remotion-lambda 4.0.350__tar.gz → 4.0.352__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.
Potentially problematic release.
This version of remotion-lambda might be problematic. Click here for more details.
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/PKG-INFO +1 -1
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda/models.py +4 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/LICENSE +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/README.md +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/setup.cfg +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/setup.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/conftest.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/constants.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_large_payload_compression.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_remotion_client.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_render_client_render_still.py +0 -0
|
@@ -316,6 +316,7 @@ class RenderMediaParams:
|
|
|
316
316
|
webhook: Optional[Webhook] = None
|
|
317
317
|
force_height: Optional[int] = None
|
|
318
318
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
319
|
+
media_cache_size_in_bytes: Optional[int] = None
|
|
319
320
|
offthreadvideo_threads: Optional[int] = None
|
|
320
321
|
force_width: Optional[int] = None
|
|
321
322
|
api_key: Optional[str] = None
|
|
@@ -370,6 +371,7 @@ class RenderMediaParams:
|
|
|
370
371
|
'webhook': self.webhook,
|
|
371
372
|
'forceHeight': self.force_height,
|
|
372
373
|
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
374
|
+
'mediaCacheSizeInBytes': self.media_cache_size_in_bytes,
|
|
373
375
|
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
374
376
|
'forceWidth': self.force_width,
|
|
375
377
|
'apiKey': self.api_key,
|
|
@@ -447,6 +449,7 @@ class RenderStillParams:
|
|
|
447
449
|
delete_after: Optional[DeleteAfter] = None
|
|
448
450
|
force_path_style: Optional[bool] = None
|
|
449
451
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
452
|
+
media_cache_size_in_bytes: Optional[int] = None
|
|
450
453
|
offthreadvideo_threads: Optional[int] = None
|
|
451
454
|
streamed: bool = False
|
|
452
455
|
|
|
@@ -499,6 +502,7 @@ class RenderStillParams:
|
|
|
499
502
|
'deleteAfter': self.delete_after,
|
|
500
503
|
'attempt': self.attempt,
|
|
501
504
|
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
505
|
+
'mediaCacheSizeInBytes': self.media_cache_size_in_bytes,
|
|
502
506
|
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
503
507
|
'streamed': self.streamed,
|
|
504
508
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.352"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/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.350 → remotion_lambda-4.0.352}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.350 → remotion_lambda-4.0.352}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|