remotion-lambda 4.0.215__tar.gz → 4.0.217__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.215 → remotion_lambda-4.0.217}/PKG-INFO +1 -1
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda/models.py +5 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda/version.py +1 -1
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda.egg-info/PKG-INFO +1 -1
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/test_render_client_render_media.py +3 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/LICENSE +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/README.md +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda/__init__.py +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda/remotionclient.py +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda.egg-info/SOURCES.txt +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda.egg-info/dependency_links.txt +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda.egg-info/requires.txt +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/remotion_lambda.egg-info/top_level.txt +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/setup.cfg +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/setup.py +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/__init__.py +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/test_get_render_progress_client.py +0 -0
- {remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/test_render_client_render_still.py +0 -0
|
@@ -287,6 +287,7 @@ class RenderMediaParams:
|
|
|
287
287
|
image_format: ValidStillImageFormats = ValidStillImageFormats.JPEG
|
|
288
288
|
crf: Optional[int] = None
|
|
289
289
|
env_variables: Optional[Dict] = None
|
|
290
|
+
metadata: Optional[Dict] = None
|
|
290
291
|
max_retries: int = 1
|
|
291
292
|
jpeg_quality: int = 80
|
|
292
293
|
privacy: Privacy = Privacy.PUBLIC
|
|
@@ -334,6 +335,7 @@ class RenderMediaParams:
|
|
|
334
335
|
'maxRetries': self.max_retries,
|
|
335
336
|
'jpegQuality': self.jpeg_quality,
|
|
336
337
|
'envVariables': self.env_variables,
|
|
338
|
+
'metadata': self.metadata,
|
|
337
339
|
'privacy': self.privacy,
|
|
338
340
|
'colorSpace': self.color_space,
|
|
339
341
|
'logLevel': self.log_level,
|
|
@@ -371,6 +373,9 @@ class RenderMediaParams:
|
|
|
371
373
|
if self.env_variables is None:
|
|
372
374
|
parameters['envVariables'] = {}
|
|
373
375
|
|
|
376
|
+
if self.metadata is None:
|
|
377
|
+
parameters['metadata'] = {}
|
|
378
|
+
|
|
374
379
|
if self.pixel_format is not None:
|
|
375
380
|
parameters['pixelFormat'] = self.pixel_format
|
|
376
381
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# pylint: disable=missing-module-docstring, missing-final-newline
|
|
2
|
-
VERSION = "4.0.
|
|
2
|
+
VERSION = "4.0.217"
|
{remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/test_render_client_render_media.py
RENAMED
|
@@ -14,6 +14,9 @@ class TestRemotionClient(TestCase):
|
|
|
14
14
|
input_props={
|
|
15
15
|
'hi': 'there'
|
|
16
16
|
},
|
|
17
|
+
metadata={
|
|
18
|
+
"Author": "Lunar"
|
|
19
|
+
},
|
|
17
20
|
download_behavior=Download(type="download", fileName="hi"),
|
|
18
21
|
webhook=Webhook(
|
|
19
22
|
url="https://example.com", secret="abc", customData=dict(hi="there"))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/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.215 → remotion_lambda-4.0.217}/tests/test_get_render_progress_client.py
RENAMED
|
File without changes
|
{remotion_lambda-4.0.215 → remotion_lambda-4.0.217}/tests/test_render_client_render_still.py
RENAMED
|
File without changes
|