vidformer 0.4.1__tar.gz → 0.5.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vidformer
3
- Version: 0.4.1
3
+ Version: 0.5.0
4
4
  Summary: A Python library for creating and viewing videos with vidformer.
5
5
  Author-email: Dominik Winecki <dominikwinecki@gmail.com>
6
6
  Requires-Python: >=3.8
@@ -1,6 +1,6 @@
1
1
  """A Python library for creating and viewing videos with vidformer."""
2
2
 
3
- __version__ = "0.4.1"
3
+ __version__ = "0.5.0"
4
4
 
5
5
  import subprocess
6
6
  from fractions import Fraction
@@ -156,7 +156,7 @@ class Spec:
156
156
  assert encoder is None or type(encoder) == str
157
157
  assert encoder_opts is None or type(encoder_opts) == dict
158
158
  if encoder_opts is not None:
159
- for k, v in encoder_opts:
159
+ for k, v in encoder_opts.items():
160
160
  assert type(k) == str and type(v) == str
161
161
 
162
162
  spec, sources, filters = self._to_json_spec()
File without changes
File without changes