Upload ffmpeg\__init__.py with huggingface_hub
Browse files- ffmpeg//__init__.py +22 -0
ffmpeg//__init__.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from __future__ import unicode_literals
|
2 |
+
from . import nodes
|
3 |
+
from . import _ffmpeg
|
4 |
+
from . import _filters
|
5 |
+
from . import _probe
|
6 |
+
from . import _run
|
7 |
+
from . import _view
|
8 |
+
from .nodes import *
|
9 |
+
from ._ffmpeg import *
|
10 |
+
from ._filters import *
|
11 |
+
from ._probe import *
|
12 |
+
from ._run import *
|
13 |
+
from ._view import *
|
14 |
+
|
15 |
+
__all__ = (
|
16 |
+
nodes.__all__
|
17 |
+
+ _ffmpeg.__all__
|
18 |
+
+ _probe.__all__
|
19 |
+
+ _run.__all__
|
20 |
+
+ _view.__all__
|
21 |
+
+ _filters.__all__
|
22 |
+
)
|