remotion-lambda 4.0.398__tar.gz → 4.0.400__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/PKG-INFO +1 -1
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda/models.py +6 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/LICENSE +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/README.md +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda/exception.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/setup.cfg +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/setup.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/conftest.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/constants.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_large_payload_compression.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_remotion_client.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_render_client_render_still.py +0 -0
|
@@ -319,7 +319,9 @@ class RenderMediaParams:
|
|
|
319
319
|
media_cache_size_in_bytes: Optional[int] = None
|
|
320
320
|
offthreadvideo_threads: Optional[int] = None
|
|
321
321
|
force_width: Optional[int] = None
|
|
322
|
+
# **DEPRECATED** - Use `license_key` instead. Will be removed in a future version.
|
|
322
323
|
api_key: Optional[str] = None
|
|
324
|
+
license_key: Optional[str] = None
|
|
323
325
|
audio_codec: Optional[str] = None
|
|
324
326
|
storage_class: Optional[str] = None
|
|
325
327
|
renderer_function_name: Optional[str] = None
|
|
@@ -375,6 +377,7 @@ class RenderMediaParams:
|
|
|
375
377
|
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
376
378
|
'forceWidth': self.force_width,
|
|
377
379
|
'apiKey': self.api_key,
|
|
380
|
+
'licenseKey': self.license_key,
|
|
378
381
|
'bucketName': self.bucket_name,
|
|
379
382
|
'audioCodec': self.audio_codec,
|
|
380
383
|
'x264Preset': self.x264_preset,
|
|
@@ -441,7 +444,9 @@ class RenderStillParams:
|
|
|
441
444
|
default_factory=lambda: PlayInBrowser(type='play-in-browser')
|
|
442
445
|
)
|
|
443
446
|
force_width: Optional[int] = None
|
|
447
|
+
# **DEPRECATED** - Use `license_key` instead. Will be removed in a future version.
|
|
444
448
|
api_key: Optional[int] = None
|
|
449
|
+
license_key: Optional[str] = None
|
|
445
450
|
storage_class: Optional[str] = None
|
|
446
451
|
force_height: Optional[int] = None
|
|
447
452
|
force_bucket_name: Optional[str] = None
|
|
@@ -497,6 +502,7 @@ class RenderStillParams:
|
|
|
497
502
|
or PlayInBrowser(type='play-in-browser'),
|
|
498
503
|
'forceWidth': self.force_width,
|
|
499
504
|
'apiKey': self.api_key,
|
|
505
|
+
'licenseKey': self.license_key,
|
|
500
506
|
'forceHeight': self.force_height,
|
|
501
507
|
'forceBucketName': self.force_bucket_name,
|
|
502
508
|
'deleteAfter': self.delete_after,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.400"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/remotion_lambda.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.398 → remotion_lambda-4.0.400}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|