remotion-lambda 4.0.262__tar.gz → 4.0.263__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.262 → remotion_lambda-4.0.263}/PKG-INFO +1 -1
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/models.py +4 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/LICENSE +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/README.md +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/setup.cfg +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/setup.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_render_client_render_still.py +0 -0
|
@@ -310,6 +310,7 @@ class RenderMediaParams:
|
|
|
310
310
|
webhook: Optional[Webhook] = None
|
|
311
311
|
force_height: Optional[int] = None
|
|
312
312
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
313
|
+
offthreadvideo_threads: Optional[int] = None
|
|
313
314
|
force_width: Optional[int] = None
|
|
314
315
|
api_key: Optional[str] = None
|
|
315
316
|
audio_codec: Optional[str] = None
|
|
@@ -358,6 +359,7 @@ class RenderMediaParams:
|
|
|
358
359
|
'webhook': self.webhook,
|
|
359
360
|
'forceHeight': self.force_height,
|
|
360
361
|
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
362
|
+
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
361
363
|
'forceWidth': self.force_width,
|
|
362
364
|
'apiKey': self.api_key,
|
|
363
365
|
'bucketName': self.bucket_name,
|
|
@@ -431,6 +433,7 @@ class RenderStillParams:
|
|
|
431
433
|
delete_after: Optional[DeleteAfter] = None
|
|
432
434
|
force_path_style: Optional[bool] = None
|
|
433
435
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
436
|
+
offthreadvideo_threads: Optional[int] = None
|
|
434
437
|
streamed: bool = False
|
|
435
438
|
|
|
436
439
|
def serialize_params(self) -> Dict:
|
|
@@ -476,6 +479,7 @@ class RenderStillParams:
|
|
|
476
479
|
'deleteAfter': self.delete_after,
|
|
477
480
|
'attempt': self.attempt,
|
|
478
481
|
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
482
|
+
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
479
483
|
'streamed': self.streamed,
|
|
480
484
|
}
|
|
481
485
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.263"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/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
|
{remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|