typed-ffmpeg-compatible 3.5.0__py3-none-any.whl → 3.5.1__py3-none-any.whl

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.
typed_ffmpeg/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '3.5.0'
21
- __version_tuple__ = version_tuple = (3, 5, 0)
20
+ __version__ = version = '3.5.1'
21
+ __version_tuple__ = version_tuple = (3, 5, 1)
typed_ffmpeg/types.py CHANGED
@@ -9,14 +9,14 @@ from typing import Literal
9
9
  from .schema import Default
10
10
  from .utils.lazy_eval.schema import LazyValue
11
11
 
12
- Boolean = bool | Literal["true", "false", "1", "0"] | Default | LazyValue
12
+ Boolean = bool | Literal["true", "false", "1", "0"] | Default | LazyValue | None
13
13
  """
14
14
  This represents FFmpeg's boolean type. It can accept either a Python boolean value (`True` or `False`)
15
15
  or a string that represents a boolean value ("true", "false", "1", or "0").
16
16
 
17
17
  """
18
18
 
19
- Duration = str | int | float | Default | LazyValue
19
+ Duration = str | int | float | Default | LazyValue | None
20
20
  """
21
21
  This represents FFmpeg's duration type. It can accept either a Python integer or float value
22
22
  or a string that represents a duration value.
@@ -25,7 +25,7 @@ Note:
25
25
  [Document](https://ffmpeg.org/ffmpeg-utils.html#Time-duration)
26
26
  """
27
27
 
28
- Color = str | Default | LazyValue
28
+ Color = str | Default | LazyValue | None
29
29
  """
30
30
  It can be the name of a color as defined below (case insensitive match) or a [0x|#]RRGGBB[AA] sequence, possibly followed by @ and a string representing the alpha component.
31
31
  The alpha component may be a string composed by "0x" followed by an hexadecimal number or a decimal number between 0.0 and 1.0, which represents the opacity value (‘0x00’ or ‘0.0’ means completely transparent, ‘0xff’ or ‘1.0’ completely opaque). If the alpha component is not specified then ‘0xff’ is assumed.
@@ -35,50 +35,50 @@ Note:
35
35
  [Document](https://ffmpeg.org/ffmpeg-utils.html#Color)
36
36
  """
37
37
 
38
- Flags = str | Default | LazyValue
38
+ Flags = str | Default | LazyValue | None
39
39
  """
40
40
  This represents FFmpeg's flags type. It accepts a string in the format "A+B",
41
41
  where "A" and "B" are individual flags. For example, "fast+bilinear" would
42
42
  represent two flags, "fast" and "bilinear", to be used in FFmpeg's command line.
43
43
  """
44
44
 
45
- Dictionary = str | Default | LazyValue
45
+ Dictionary = str | Default | LazyValue | None
46
46
  # format A=B:C=D:E=F
47
- Pix_fmt = str | Default | LazyValue
47
+ Pix_fmt = str | Default | LazyValue | None
48
48
  """
49
49
  please see `ffmpeg -pix_fmts` for a list of supported pixel formats.
50
50
  """
51
51
 
52
- Int = str | int | Default | LazyValue
52
+ Int = str | int | Default | LazyValue | None
53
53
  """
54
54
  This represents FFmpeg's integer type. It can accept either a Python integer value
55
55
  or a string that represents a integer value.
56
56
  """
57
57
 
58
- Int64 = str | int | Default | LazyValue
58
+ Int64 = str | int | Default | LazyValue | None
59
59
  """
60
60
  This represents FFmpeg's integer type. It can accept either a Python integer value
61
61
  or a string that represents a integer value.
62
62
  """
63
63
 
64
- Double = str | int | float | Default | LazyValue
64
+ Double = str | int | float | Default | LazyValue | None
65
65
  """
66
66
  This represents FFmpeg's double type. It can accept either a Python integer or float value
67
67
  or a string that represents a double value.
68
68
  """
69
69
  # TODO: more info
70
- Float = str | int | float | Default | LazyValue
70
+ Float = str | int | float | Default | LazyValue | None
71
71
  """
72
72
  This represents FFmpeg's float type. It can accept either a Python integer or float value
73
73
  or a string that represents a float value.
74
74
  """
75
- String = str | int | float | Default | LazyValue
75
+ String = str | int | float | Default | LazyValue | None
76
76
  """
77
77
  This represents FFmpeg's string type. It can accept either a Python string value
78
78
  or a int/float that will be converted to a string.
79
79
  """
80
80
 
81
- Video_rate = str | int | float | Default | LazyValue
81
+ Video_rate = str | int | float | Default | LazyValue | None
82
82
  """
83
83
  Specify the frame rate of a video, expressed as the number of frames generated per second. It has to be a string in the format frame_rate_num/frame_rate_den, an integer number, a float number or a valid video frame rate abbreviation.
84
84
 
@@ -87,7 +87,7 @@ Note:
87
87
  """
88
88
 
89
89
  # TODO: enum
90
- Image_size = str | Default | LazyValue
90
+ Image_size = str | Default | LazyValue | None
91
91
  """
92
92
  Specify the size of the sourced video, it may be a string of the form widthxheight, or the name of a size abbreviation.
93
93
 
@@ -95,7 +95,7 @@ Note:
95
95
  [Document](https://ffmpeg.org/ffmpeg-utils.html#Video-size)
96
96
  """
97
97
 
98
- Rational = str | Default | LazyValue
98
+ Rational = str | Default | LazyValue | None
99
99
  """
100
100
  Specify the frame rate of a video, expressed as the number of frames generated per second. It has to be a string in the format frame_rate_num/frame_rate_den, an integer number, a float number or a valid video frame rate abbreviation.
101
101
 
@@ -104,16 +104,16 @@ Note:
104
104
  """
105
105
 
106
106
 
107
- Sample_fmt = str | Default | LazyValue
108
- Binary = str | Default | LazyValue
107
+ Sample_fmt = str | Default | LazyValue | None
108
+ Binary = str | Default | LazyValue | None
109
109
 
110
110
  # OPT Type
111
- Func = str | int | float | Default | LazyValue
111
+ Func = str | int | float | Default | LazyValue | None
112
112
  """
113
113
  ref: OPT_TYPE_FUNC
114
114
  """
115
115
 
116
- Time = str | int | float | Default | LazyValue
116
+ Time = str | int | float | Default | LazyValue | None
117
117
  """
118
118
  ref: OPT_TYPE_TIME
119
119
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: typed-ffmpeg-compatible
3
- Version: 3.5.0
3
+ Version: 3.5.1
4
4
  Summary: Modern Python FFmpeg wrappers offer comprehensive support for complex filters, complete with detailed typing and documentation.
5
5
  Author-email: lucemia <lucemia@gmail.com>
6
6
  License-Expression: MIT
@@ -1,5 +1,5 @@
1
1
  typed_ffmpeg/__init__.py,sha256=6ULyAwFhDsIb03SeKRKArqYWlxfeOvRTGEI6vUUj774,1676
2
- typed_ffmpeg/_version.py,sha256=fgty578T-CZ3bVBzmR06Jxx5Gg4QlbZS7aSfSeTblVI,511
2
+ typed_ffmpeg/_version.py,sha256=Ds9Dz3aeXTarOqzWPCE0NEHSkHj_416LzolkDmAzO60,511
3
3
  typed_ffmpeg/base.py,sha256=JNNNnN-1A50i9zviR6uOjAs-bClCDx5qx9A5iSePBeI,6309
4
4
  typed_ffmpeg/exceptions.py,sha256=D4SID6WOwkjVV8O8mAjrEDHWn-8BRDnK_jteaDof1SY,2474
5
5
  typed_ffmpeg/filters.py,sha256=XY1LqXY6Ch1wOX-1XW3SzgwH3NQaAtSEQew6f3JoTeY,144001
@@ -7,7 +7,7 @@ typed_ffmpeg/info.py,sha256=0KCzf8hJaI6ObPRT0uftLa96RlYvaQmoEq1sqFJSc24,9521
7
7
  typed_ffmpeg/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  typed_ffmpeg/schema.py,sha256=KVtmyGeJutjFot70r6Nj8W8WBqwvfg2-rSgjdhPVh-o,1615
9
9
  typed_ffmpeg/sources.py,sha256=gR8qH-Qf36X2veab4kh9ZE5CYu5K0Yz6eXzd0lCFdPE,122297
10
- typed_ffmpeg/types.py,sha256=bnNVUXwLxzNeeJDlUqF1N_qjCAlM_HEtIUPmng8jybk,4161
10
+ typed_ffmpeg/types.py,sha256=jFx20tRgwpRimxXMO4kJvVW3uYIdwjPUz66db4bXfnM,4287
11
11
  typed_ffmpeg/codecs/__init__.py,sha256=qEqV-Oo2vG06WIAm3obcArK6ZBDWNP7_Kw6cszSGqb8,87
12
12
  typed_ffmpeg/codecs/decoders.py,sha256=4SS6r0j1Pa7s_Fut04OmLhFOZ1kVA7UPJNT-VPN6E-k,123234
13
13
  typed_ffmpeg/codecs/encoders.py,sha256=9n2FNEEBfpbtOKgDi6fOHEGVhbAzTEF_UoZDqqQzEmw,216605
@@ -59,9 +59,9 @@ typed_ffmpeg/utils/view.py,sha256=jiCKJnx-KVJh-uvhkADBQNlWH1uHPqyYgmSZ_iSEj0c,34
59
59
  typed_ffmpeg/utils/lazy_eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
60
  typed_ffmpeg/utils/lazy_eval/operator.py,sha256=QWybd-UH3VdDa8kgWkqAMi3WV0b0WF1d1JixQr6is2E,4136
61
61
  typed_ffmpeg/utils/lazy_eval/schema.py,sha256=WSg-E3MS3itN1AT6Dq4Z9btnRHEReuN3o6zruXou7h4,9623
62
- typed_ffmpeg_compatible-3.5.0.dist-info/licenses/LICENSE,sha256=8Aaya5i_09Cou2i3QMxTwz6uHGzi_fGA4uhkco07-A4,1066
63
- typed_ffmpeg_compatible-3.5.0.dist-info/METADATA,sha256=pdextRb9lSxepC3rpeiJIiFNkuL90UFGrTvRCdiipBY,8385
64
- typed_ffmpeg_compatible-3.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
65
- typed_ffmpeg_compatible-3.5.0.dist-info/entry_points.txt,sha256=kUQvZ27paV-07qtkIFV-emKsYtjFOTw9kknBRSXPs04,45
66
- typed_ffmpeg_compatible-3.5.0.dist-info/top_level.txt,sha256=vuASJGVRQiNmhWY1pt0RXESWSNkknWXqWLIRAU7H_L4,13
67
- typed_ffmpeg_compatible-3.5.0.dist-info/RECORD,,
62
+ typed_ffmpeg_compatible-3.5.1.dist-info/licenses/LICENSE,sha256=8Aaya5i_09Cou2i3QMxTwz6uHGzi_fGA4uhkco07-A4,1066
63
+ typed_ffmpeg_compatible-3.5.1.dist-info/METADATA,sha256=1xN_TPTfNYKO3649Cc6ViRv4K02gMWL9GGBTUbEakTY,8385
64
+ typed_ffmpeg_compatible-3.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
65
+ typed_ffmpeg_compatible-3.5.1.dist-info/entry_points.txt,sha256=kUQvZ27paV-07qtkIFV-emKsYtjFOTw9kknBRSXPs04,45
66
+ typed_ffmpeg_compatible-3.5.1.dist-info/top_level.txt,sha256=vuASJGVRQiNmhWY1pt0RXESWSNkknWXqWLIRAU7H_L4,13
67
+ typed_ffmpeg_compatible-3.5.1.dist-info/RECORD,,