remotion-lambda 4.0.181__tar.gz → 4.0.183__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.181 → remotion_lambda-4.0.183}/PKG-INFO +1 -1
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/models.py +4 -3
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/LICENSE +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/README.md +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/setup.cfg +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/setup.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_media.py +0 -0
- {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_still.py +0 -0
|
@@ -35,6 +35,7 @@ class Privacy(str, Enum):
|
|
|
35
35
|
"""
|
|
36
36
|
PUBLIC: str = 'public'
|
|
37
37
|
PRIVATE: str = 'private'
|
|
38
|
+
NO_ACL: str = 'no-acl'
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
class LogLevel(str, Enum):
|
|
@@ -123,12 +124,12 @@ class OutNameInputObject:
|
|
|
123
124
|
Defines output naming and storage options.
|
|
124
125
|
|
|
125
126
|
Attributes:
|
|
126
|
-
|
|
127
|
+
bucketName (str): The name of the S3 bucket for output storage.
|
|
127
128
|
key (str): The key name within the S3 bucket.
|
|
128
129
|
s3_output_provider (Optional[CustomCredentials]):
|
|
129
130
|
Optional custom credentials for the S3 output provider.
|
|
130
131
|
"""
|
|
131
|
-
|
|
132
|
+
bucketName: str
|
|
132
133
|
key: str
|
|
133
134
|
s3_output_provider: Optional[CustomCredentials] = None
|
|
134
135
|
|
|
@@ -251,7 +252,7 @@ class RenderMediaParams:
|
|
|
251
252
|
input_props: Optional[List] = None
|
|
252
253
|
bucket_name: Optional[str] = None
|
|
253
254
|
region: Optional[str] = None
|
|
254
|
-
out_name: Optional[str] = None
|
|
255
|
+
out_name: Optional[Union[str, OutNameInputObject]] = None
|
|
255
256
|
prefer_lossless: Optional[bool] = False
|
|
256
257
|
composition: str = ""
|
|
257
258
|
serve_url: str = ""
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.183"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/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.181 → remotion_lambda-4.0.183}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_media.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|