remotion-lambda 4.0.262__tar.gz → 4.0.263__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.262 → remotion_lambda-4.0.263}/PKG-INFO +1 -1
  2. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/models.py +4 -0
  3. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/version.py +1 -1
  4. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/PKG-INFO +1 -1
  5. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/LICENSE +0 -0
  6. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/README.md +0 -0
  7. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/__init__.py +0 -0
  8. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda/remotionclient.py +0 -0
  9. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/SOURCES.txt +0 -0
  10. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/dependency_links.txt +0 -0
  11. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/requires.txt +0 -0
  12. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/remotion_lambda.egg-info/top_level.txt +0 -0
  13. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/setup.cfg +0 -0
  14. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/setup.py +0 -0
  15. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/__init__.py +0 -0
  16. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_get_render_progress_client.py +0 -0
  17. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/tests/test_render_client_render_media.py +0 -0
  18. {remotion_lambda-4.0.262 → remotion_lambda-4.0.263}/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.262
3
+ Version: 4.0.263
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
@@ -310,6 +310,7 @@ class RenderMediaParams:
310
310
  webhook: Optional[Webhook] = None
311
311
  force_height: Optional[int] = None
312
312
  offthreadvideo_cache_size_in_bytes: Optional[int] = None
313
+ offthreadvideo_threads: Optional[int] = None
313
314
  force_width: Optional[int] = None
314
315
  api_key: Optional[str] = None
315
316
  audio_codec: Optional[str] = None
@@ -358,6 +359,7 @@ class RenderMediaParams:
358
359
  'webhook': self.webhook,
359
360
  'forceHeight': self.force_height,
360
361
  'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
362
+ 'offthreadVideoThreads': self.offthreadvideo_threads,
361
363
  'forceWidth': self.force_width,
362
364
  'apiKey': self.api_key,
363
365
  'bucketName': self.bucket_name,
@@ -431,6 +433,7 @@ class RenderStillParams:
431
433
  delete_after: Optional[DeleteAfter] = None
432
434
  force_path_style: Optional[bool] = None
433
435
  offthreadvideo_cache_size_in_bytes: Optional[int] = None
436
+ offthreadvideo_threads: Optional[int] = None
434
437
  streamed: bool = False
435
438
 
436
439
  def serialize_params(self) -> Dict:
@@ -476,6 +479,7 @@ class RenderStillParams:
476
479
  'deleteAfter': self.delete_after,
477
480
  'attempt': self.attempt,
478
481
  'offthreadVideoCacheSizeInBytes': self.offthreadvideo_cache_size_in_bytes,
482
+ 'offthreadVideoThreads': self.offthreadvideo_threads,
479
483
  'streamed': self.streamed,
480
484
  }
481
485
 
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.262"
2
+ VERSION = "4.0.263"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.262
3
+ Version: 4.0.263
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