remotion-lambda 4.0.251__tar.gz → 4.0.253__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.
Files changed (18) hide show
  1. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/PKG-INFO +1 -1
  2. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda/models.py +4 -0
  3. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda/version.py +1 -1
  4. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda.egg-info/PKG-INFO +1 -1
  5. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/LICENSE +0 -0
  6. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/README.md +0 -0
  7. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda/__init__.py +0 -0
  8. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda/remotionclient.py +0 -0
  9. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda.egg-info/SOURCES.txt +0 -0
  10. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda.egg-info/dependency_links.txt +0 -0
  11. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda.egg-info/requires.txt +0 -0
  12. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/remotion_lambda.egg-info/top_level.txt +0 -0
  13. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/setup.cfg +0 -0
  14. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/setup.py +0 -0
  15. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/tests/__init__.py +0 -0
  16. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/tests/test_get_render_progress_client.py +0 -0
  17. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/tests/test_render_client_render_media.py +0 -0
  18. {remotion_lambda-4.0.251 → remotion_lambda-4.0.253}/tests/test_render_client_render_still.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion_lambda
3
- Version: 4.0.251
3
+ Version: 4.0.253
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
@@ -311,6 +311,7 @@ class RenderMediaParams:
311
311
  force_height: Optional[int] = None
312
312
  offthreadvideo_cache_size_in_bytes: Optional[int] = None
313
313
  force_width: Optional[int] = None
314
+ api_key: Optional[str] = None
314
315
  audio_codec: Optional[str] = None
315
316
  renderer_function_name: Optional[str] = None
316
317
  pro_res_profile: Optional[str] = None
@@ -358,6 +359,7 @@ class RenderMediaParams:
358
359
  'forceHeight': self.force_height,
359
360
  'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
360
361
  'forceWidth': self.force_width,
362
+ 'apiKey': self.api_key,
361
363
  'bucketName': self.bucket_name,
362
364
  'audioCodec': self.audio_codec,
363
365
  'x264Preset': self.x264_preset,
@@ -422,6 +424,7 @@ class RenderStillParams:
422
424
  download_behavior: Dict = field(default_factory=lambda: {
423
425
  'type': 'play-in-browser'})
424
426
  force_width: Optional[int] = None
427
+ api_key: Optional[int] = None
425
428
  force_height: Optional[int] = None
426
429
  force_bucket_name: Optional[str] = None
427
430
  dump_browser_logs: Optional[bool] = None
@@ -467,6 +470,7 @@ class RenderStillParams:
467
470
  'scale': self.scale,
468
471
  'downloadBehavior': self.download_behavior or {'type': 'play-in-browser'},
469
472
  'forceWidth': self.force_width,
473
+ 'apiKey': self.api_key,
470
474
  'forceHeight': self.force_height,
471
475
  'forceBucketName': self.force_bucket_name,
472
476
  'deleteAfter': self.delete_after,
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.251"
2
+ VERSION = "4.0.253"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.251
3
+ Version: 4.0.253
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