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 +2 -1
- typed_ffmpeg/_version.py +2 -2
- typed_ffmpeg/base.py +1 -1
- typed_ffmpeg/codecs/__init__.py +3 -0
- typed_ffmpeg/codecs/decoders.py +6644 -0
- typed_ffmpeg/codecs/encoders.py +6435 -0
- typed_ffmpeg/codecs/schema.py +17 -0
- typed_ffmpeg/common/serialize.py +1 -1
- typed_ffmpeg/dag/global_runnable/global_args.py +59 -55
- typed_ffmpeg/dag/io/_input.py +72 -64
- typed_ffmpeg/dag/io/_output.py +114 -105
- typed_ffmpeg/dag/io/output_args.py +118 -104
- typed_ffmpeg/dag/nodes.py +1 -1
- typed_ffmpeg/dag/schema.py +1 -1
- typed_ffmpeg/filters.py +1717 -675
- typed_ffmpeg/sources.py +1641 -571
- typed_ffmpeg/streams/audio.py +1994 -1554
- typed_ffmpeg/streams/video.py +4540 -2843
- typed_ffmpeg/utils/{forzendict.py → frozendict.py} +56 -1
- typed_ffmpeg/utils/run.py +1 -1
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/METADATA +1 -1
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/RECORD +26 -22
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/WHEEL +0 -0
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/entry_points.txt +0 -0
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/licenses/LICENSE +0 -0
- {typed_ffmpeg_compatible-3.3.1.dist-info → typed_ffmpeg_compatible-3.4.dist-info}/top_level.txt +0 -0
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
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.
|
24
|
+
from .utils.frozendict import FrozenDict
|
25
25
|
|
26
26
|
|
27
27
|
def merge_outputs(*streams: OutputStream) -> GlobalStream:
|