remotion-lambda 4.0.447__tar.gz → 4.0.449__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.447 → remotion_lambda-4.0.449}/PKG-INFO +1 -1
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda/models.py +2 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/LICENSE +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/README.md +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda/exception.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/setup.cfg +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/setup.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/conftest.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/constants.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_large_payload_compression.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_remotion_client.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_render_client_render_still.py +0 -0
|
@@ -334,6 +334,7 @@ class RenderMediaParams:
|
|
|
334
334
|
encoding_buffer_size: Optional[str] = None
|
|
335
335
|
encoding_max_rate: Optional[str] = None
|
|
336
336
|
is_production: Optional[bool] = None
|
|
337
|
+
sample_rate: int = 48000
|
|
337
338
|
|
|
338
339
|
def serialize_params(self) -> Dict:
|
|
339
340
|
"""
|
|
@@ -359,6 +360,7 @@ class RenderMediaParams:
|
|
|
359
360
|
'frameRange': self.frame_range,
|
|
360
361
|
'outName': self.out_name,
|
|
361
362
|
'preferLossless': self.prefer_lossless,
|
|
363
|
+
'sampleRate': self.sample_rate,
|
|
362
364
|
'timeoutInMilliseconds': self.timeout_in_milliseconds,
|
|
363
365
|
'chromiumOptions': (
|
|
364
366
|
self.chromium_options if self.chromium_options is not None else {}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.449"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/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.447 → remotion_lambda-4.0.449}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.447 → remotion_lambda-4.0.449}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|