remotion-lambda 4.0.232__tar.gz → 4.0.233__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 (19) hide show
  1. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/PKG-INFO +1 -1
  2. remotion_lambda-4.0.233/README.md +5 -0
  3. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda/models.py +6 -0
  4. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda/version.py +1 -1
  5. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda.egg-info/PKG-INFO +1 -1
  6. remotion_lambda-4.0.232/README.md +0 -16
  7. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/LICENSE +0 -0
  8. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda/__init__.py +0 -0
  9. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda/remotionclient.py +0 -0
  10. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda.egg-info/SOURCES.txt +0 -0
  11. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda.egg-info/dependency_links.txt +0 -0
  12. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda.egg-info/requires.txt +0 -0
  13. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/remotion_lambda.egg-info/top_level.txt +0 -0
  14. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/setup.cfg +0 -0
  15. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/setup.py +0 -0
  16. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/tests/__init__.py +0 -0
  17. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/tests/test_get_render_progress_client.py +0 -0
  18. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/tests/test_render_client_render_media.py +0 -0
  19. {remotion_lambda-4.0.232 → remotion_lambda-4.0.233}/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.232
3
+ Version: 4.0.233
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
@@ -0,0 +1,5 @@
1
+ # @remotion/lambda-python
2
+
3
+ ## Usage
4
+
5
+ This is an internal package and has no documentation.
@@ -369,6 +369,8 @@ class RenderMediaParams:
369
369
 
370
370
  if self.crf is not None:
371
371
  parameters['crf'] = self.crf
372
+ else:
373
+ parameters['crf'] = None
372
374
 
373
375
  if self.env_variables is None:
374
376
  parameters['envVariables'] = {}
@@ -378,9 +380,13 @@ class RenderMediaParams:
378
380
 
379
381
  if self.pixel_format is not None:
380
382
  parameters['pixelFormat'] = self.pixel_format
383
+ else:
384
+ parameters['pixelFormat'] = None
381
385
 
382
386
  if self.pro_res_profile is not None:
383
387
  parameters['proResProfile'] = self.pro_res_profile
388
+ else:
389
+ parameters['proResProfile'] = None
384
390
 
385
391
  if self.x264_preset is not None:
386
392
  parameters['x264Preset'] = self.x264_preset
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.232"
2
+ VERSION = "4.0.233"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.232
3
+ Version: 4.0.233
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
@@ -1,16 +0,0 @@
1
- # @remotion/lambda-python
2
-
3
- [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/lambda-python.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/lambda-python?minimal=true)
4
-
5
- ## Installation
6
-
7
- ```bash
8
- npm install @remotion/lambda-python --save-exact
9
- ```
10
-
11
- When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
12
- Remove the `^` character from the version number to use the exact version.
13
-
14
- ## Usage
15
-
16
- This is an internal package and has no documentation.