remotion-lambda 4.0.424__tar.gz → 4.0.425__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.424 → remotion_lambda-4.0.425}/PKG-INFO +1 -1
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda/models.py +8 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/LICENSE +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/README.md +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda/exception.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/setup.cfg +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/setup.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/conftest.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/constants.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_large_payload_compression.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_remotion_client.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_render_client_render_still.py +0 -0
|
@@ -315,6 +315,8 @@ class RenderMediaParams:
|
|
|
315
315
|
video_bitrate: Optional[int] = None
|
|
316
316
|
webhook: Optional[Webhook] = None
|
|
317
317
|
force_height: Optional[int] = None
|
|
318
|
+
force_fps: Optional[int] = None
|
|
319
|
+
force_duration_in_frames: Optional[int] = None
|
|
318
320
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
319
321
|
media_cache_size_in_bytes: Optional[int] = None
|
|
320
322
|
offthreadvideo_threads: Optional[int] = None
|
|
@@ -373,6 +375,8 @@ class RenderMediaParams:
|
|
|
373
375
|
'videoBitrate': self.video_bitrate,
|
|
374
376
|
'webhook': self.webhook,
|
|
375
377
|
'forceHeight': self.force_height,
|
|
378
|
+
'forceFps': self.force_fps,
|
|
379
|
+
'forceDurationInFrames': self.force_duration_in_frames,
|
|
376
380
|
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
377
381
|
'mediaCacheSizeInBytes': self.media_cache_size_in_bytes,
|
|
378
382
|
'offthreadVideoThreads': self.offthreadvideo_threads,
|
|
@@ -450,6 +454,8 @@ class RenderStillParams:
|
|
|
450
454
|
license_key: Optional[str] = None
|
|
451
455
|
storage_class: Optional[str] = None
|
|
452
456
|
force_height: Optional[int] = None
|
|
457
|
+
force_fps: Optional[int] = None
|
|
458
|
+
force_duration_in_frames: Optional[int] = None
|
|
453
459
|
force_bucket_name: Optional[str] = None
|
|
454
460
|
dump_browser_logs: Optional[bool] = None
|
|
455
461
|
delete_after: Optional[DeleteAfter] = None
|
|
@@ -505,6 +511,8 @@ class RenderStillParams:
|
|
|
505
511
|
'forceWidth': self.force_width,
|
|
506
512
|
'licenseKey': self.license_key if self.license_key is not None else self.api_key,
|
|
507
513
|
'forceHeight': self.force_height,
|
|
514
|
+
'forceFps': self.force_fps,
|
|
515
|
+
'forceDurationInFrames': self.force_duration_in_frames,
|
|
508
516
|
'forceBucketName': self.force_bucket_name,
|
|
509
517
|
'deleteAfter': self.delete_after,
|
|
510
518
|
'attempt': self.attempt,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.425"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/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.424 → remotion_lambda-4.0.425}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.424 → remotion_lambda-4.0.425}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|