remotion-lambda 4.0.70__tar.gz → 4.0.71__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion_lambda
3
- Version: 4.0.70
3
+ Version: 4.0.71
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
@@ -18,7 +18,7 @@ class RenderParams:
18
18
  composition: str = ""
19
19
  serve_url: str = ""
20
20
  frames_per_lambda: Optional[int] = None
21
- input_props: Optional[Dict] = None
21
+ private_serialized_input_props: Optional[Dict] = None
22
22
  codec: str = 'h264'
23
23
  version: str = ""
24
24
  image_format: str = 'jpeg'
@@ -62,7 +62,7 @@ class RenderParams:
62
62
  'framesPerLambda': self.frames_per_lambda,
63
63
  'composition': self.composition,
64
64
  'serveUrl': self.serve_url,
65
- 'inputProps': self.input_props,
65
+ 'inputProps': self.private_serialized_input_props,
66
66
  'codec': self.codec,
67
67
  'imageFormat': self.image_format,
68
68
  'maxRetries': self.max_retries,
@@ -100,7 +100,7 @@ class RemotionClient:
100
100
  render_params.serve_url = self.serve_url
101
101
  render_params.region = self.region
102
102
  render_params.function_name = self.function_name
103
- render_params.input_props = self._serialize_input_props(
103
+ render_params.private_serialized_input_props = self._serialize_input_props(
104
104
  input_props=render_params.data,
105
105
  render_type="video-or-audio"
106
106
  )
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.70"
2
+ VERSION = "4.0.71"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.70
3
+ Version: 4.0.71
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