remotion-lambda 4.0.164__tar.gz → 4.0.165__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.164 → remotion_lambda-4.0.165}/PKG-INFO +2 -4
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda/models.py +3 -1
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda.egg-info/PKG-INFO +2 -4
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/LICENSE +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/README.md +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/setup.cfg +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/setup.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/test_render_client_render_still.py +0 -0
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: remotion_lambda
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.165
|
|
4
4
|
Summary: Remotion Lambda client
|
|
5
5
|
Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
|
|
6
6
|
Author: Jonny Burger
|
|
7
7
|
Author-email: jonny@remotion.dev
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
8
|
Requires-Python: >=3.6
|
|
11
9
|
Description-Content-Type: text/markdown
|
|
12
10
|
License-File: LICENSE
|
|
11
|
+
Requires-Dist: boto3<1.35.0,>=1.34.23
|
|
13
12
|
|
|
14
13
|
Remotion is a framework for creating videos programmatically using React.
|
|
15
|
-
|
|
@@ -386,6 +386,7 @@ class RenderStillParams:
|
|
|
386
386
|
dump_browser_logs: Optional[bool] = None
|
|
387
387
|
delete_after: Optional[DeleteAfter] = None
|
|
388
388
|
offthreadvideo_cache_size_in_bytes: Optional[int] = None
|
|
389
|
+
streamed: bool = False
|
|
389
390
|
|
|
390
391
|
def serialize_params(self) -> Dict:
|
|
391
392
|
"""
|
|
@@ -428,7 +429,8 @@ class RenderStillParams:
|
|
|
428
429
|
'forceBucketName': self.force_bucket_name,
|
|
429
430
|
'deleteAfter': self.delete_after,
|
|
430
431
|
'attempt': self.attempt,
|
|
431
|
-
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes
|
|
432
|
+
'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
|
|
433
|
+
'streamed': self.streamed
|
|
432
434
|
}
|
|
433
435
|
|
|
434
436
|
return parameters
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.165"
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: remotion-lambda
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.165
|
|
4
4
|
Summary: Remotion Lambda client
|
|
5
5
|
Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
|
|
6
6
|
Author: Jonny Burger
|
|
7
7
|
Author-email: jonny@remotion.dev
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
8
|
Requires-Python: >=3.6
|
|
11
9
|
Description-Content-Type: text/markdown
|
|
12
10
|
License-File: LICENSE
|
|
11
|
+
Requires-Dist: boto3<1.35.0,>=1.34.23
|
|
13
12
|
|
|
14
13
|
Remotion is a framework for creating videos programmatically using React.
|
|
15
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/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.164 → remotion_lambda-4.0.165}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.164 → remotion_lambda-4.0.165}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|