typed-ffmpeg-compatible 3.3.1__py3-none-any.whl → 3.4__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/__init__.py CHANGED
@@ -22,7 +22,7 @@ Example:
22
22
  ```
23
23
  """
24
24
 
25
- from . import compile, dag, filters, sources
25
+ from . import codecs, compile, dag, filters, sources
26
26
  from .base import afilter, filter_multi_output, input, merge_outputs, output, vfilter
27
27
  from .dag import Stream
28
28
  from .exceptions import FFMpegExecuteError, FFMpegTypeError, FFMpegValueError
@@ -31,6 +31,7 @@ from .info import get_codecs, get_decoders, get_encoders
31
31
  from .streams import AudioStream, AVStream, SubtitleStream, VideoStream
32
32
 
33
33
  __all__ = [
34
+ "codecs",
34
35
  "sources",
35
36
  "filters",
36
37
  "input",
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.3.1'
21
- __version_tuple__ = version_tuple = (3, 3, 1)
20
+ __version__ = version = '3.4'
21
+ __version_tuple__ = version_tuple = (3, 4)
typed_ffmpeg/base.py CHANGED
@@ -21,7 +21,7 @@ from .dag.nodes import (
21
21
  from .schema import StreamType
22
22
  from .streams.audio import AudioStream
23
23
  from .streams.video import VideoStream
24
- from .utils.forzendict import FrozenDict
24
+ from .utils.frozendict import FrozenDict
25
25
 
26
26
 
27
27
  def merge_outputs(*streams: OutputStream) -> GlobalStream:
@@ -0,0 +1,3 @@
1
+ from . import decoders, encoders, schema
2
+
3
+ __all__ = ["encoders", "decoders", "schema"]