fid-ffmpeg 0.4.5__py3-none-any.whl → 0.4.6__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.
- fid/tasks/audio/audio_interactive.py +13 -13
- fid/tasks/encode/encode_interactive.py +3 -3
- fid/tasks/extract/extract_interactive.py +9 -9
- fid/tasks/stream/stream_interactive.py +7 -7
- fid/tasks/video/video_interactive.py +6 -6
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/METADATA +1 -1
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/RECORD +11 -11
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/WHEEL +0 -0
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/entry_points.txt +0 -0
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/licenses/LICENSE +0 -0
- {fid_ffmpeg-0.4.5.dist-info → fid_ffmpeg-0.4.6.dist-info}/top_level.txt +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import questionary
|
|
2
2
|
import typer
|
|
3
|
-
from .denoise import denoise
|
|
4
|
-
from .equalizer import equalizer
|
|
3
|
+
#from .denoise import denoise
|
|
4
|
+
#from .equalizer import equalizer
|
|
5
5
|
from .compressor import compress
|
|
6
|
-
from .codec import codec
|
|
7
|
-
from .bitrate import bitrate
|
|
8
|
-
from .channels import channels
|
|
9
|
-
from .delay import delay
|
|
10
|
-
from .fade import fade
|
|
11
|
-
from .trim import trim
|
|
12
|
-
from .replace import replace
|
|
6
|
+
#from .codec import codec
|
|
7
|
+
#from .bitrate import bitrate
|
|
8
|
+
#from .channels import channels
|
|
9
|
+
#from .delay import delay
|
|
10
|
+
#from .fade import fade
|
|
11
|
+
#from .trim import trim
|
|
12
|
+
#from .replace import replace
|
|
13
13
|
from .mute import mute
|
|
14
|
-
from .mix import mix
|
|
15
|
-
from .speed import speed
|
|
16
|
-
from .normalize import normalize
|
|
17
|
-
from .volume import volume
|
|
14
|
+
#from .mix import mix
|
|
15
|
+
#from .speed import speed
|
|
16
|
+
#from .normalize import normalize
|
|
17
|
+
#from .volume import volume
|
|
18
18
|
|
|
19
19
|
def audio_main(video_path):
|
|
20
20
|
|
|
@@ -2,15 +2,15 @@ import questionary
|
|
|
2
2
|
import typer
|
|
3
3
|
from .audio import audio
|
|
4
4
|
from .frames import frames
|
|
5
|
-
from .thumbnails import thumbnails
|
|
6
|
-
from .keyframes import keyframes
|
|
7
|
-
from .audio_track import audio_track
|
|
8
|
-
from .audio_channels import audio_channels
|
|
9
|
-
from .subtitles import subtitles
|
|
10
|
-
from .subtitles_track import subtitles_track
|
|
11
|
-
from .subtitles_convert import subtitles_convert
|
|
12
|
-
from .chapters import chapters
|
|
13
|
-
from .attachments import attachments
|
|
5
|
+
#from .thumbnails import thumbnails
|
|
6
|
+
#from .keyframes import keyframes
|
|
7
|
+
#from .audio_track import audio_track
|
|
8
|
+
#from .audio_channels import audio_channels
|
|
9
|
+
#from .subtitles import subtitles
|
|
10
|
+
#from .subtitles_track import subtitles_track
|
|
11
|
+
#from .subtitles_convert import subtitles_convert
|
|
12
|
+
#from .chapters import chapters
|
|
13
|
+
#from .attachments import attachments
|
|
14
14
|
|
|
15
15
|
def extract_main(video_path):
|
|
16
16
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import questionary
|
|
2
2
|
import typer
|
|
3
|
-
from .hls import hls
|
|
4
|
-
from .rtmp import rtmp
|
|
5
|
-
from .dash import dash
|
|
6
|
-
from .srt import srt
|
|
7
|
-
from .udp import udp
|
|
8
|
-
from .rtsp import rtsp
|
|
9
|
-
from .http import http
|
|
3
|
+
#from .hls import hls
|
|
4
|
+
#from .rtmp import rtmp
|
|
5
|
+
#from .dash import dash
|
|
6
|
+
#from .srt import srt
|
|
7
|
+
#from .udp import udp
|
|
8
|
+
#from .rtsp import rtsp
|
|
9
|
+
#from .http import http
|
|
10
10
|
|
|
11
11
|
def stream_main(video_path):
|
|
12
12
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import questionary
|
|
2
2
|
import typer
|
|
3
3
|
from .compressor import compress
|
|
4
|
-
from .concat import concat
|
|
5
|
-
from .crop import crop
|
|
6
|
-
from .fps import fps
|
|
4
|
+
#from .concat import concat
|
|
5
|
+
#from .crop import crop
|
|
6
|
+
#from .fps import fps
|
|
7
7
|
from .gif import gif
|
|
8
8
|
from .resize import resize
|
|
9
|
-
from .rotate import rotate
|
|
10
|
-
from .speed import speed
|
|
11
|
-
from .trim import trim
|
|
9
|
+
#from .rotate import rotate
|
|
10
|
+
#from .speed import speed
|
|
11
|
+
#from .trim import trim
|
|
12
12
|
|
|
13
13
|
def video_main(video_path):
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@ fid/initial_files/error_handling.py,sha256=Z1gSb90rS2Vy4VZHS9Zk7OHPL2o6NOw4ipzBQ
|
|
|
7
7
|
fid/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
fid/tasks/info.py,sha256=lDrvHBGTp-PQFb-6jZ9FeB6ou4SNo4CO4Rc9SVPBHPo,367
|
|
9
9
|
fid/tasks/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
fid/tasks/audio/audio_interactive.py,sha256=
|
|
10
|
+
fid/tasks/audio/audio_interactive.py,sha256=dVvrwq0cUG7A8B__2E7ZV3eAb0ZXeC7TVYt6k2wijJY,2532
|
|
11
11
|
fid/tasks/audio/bitrate.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
fid/tasks/audio/channels.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
fid/tasks/audio/codec.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -25,7 +25,7 @@ fid/tasks/audio/trim.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
25
25
|
fid/tasks/audio/volume.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
fid/tasks/encode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
fid/tasks/encode/av1.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
fid/tasks/encode/encode_interactive.py,sha256=
|
|
28
|
+
fid/tasks/encode/encode_interactive.py,sha256=5PVz1zk4bBk52kRQweg8OBJwHffr11LTin_3pAcLqbc,864
|
|
29
29
|
fid/tasks/encode/h264.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
fid/tasks/encode/h265.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
fid/tasks/extract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -34,7 +34,7 @@ fid/tasks/extract/audio.py,sha256=vsAcpzp7qauIRakxrbWmleSeXKJoqKqwYwK2QSYsejA,43
|
|
|
34
34
|
fid/tasks/extract/audio_channels.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
fid/tasks/extract/audio_track.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
fid/tasks/extract/chapters.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
fid/tasks/extract/extract_interactive.py,sha256=
|
|
37
|
+
fid/tasks/extract/extract_interactive.py,sha256=eXajK6x1mIP7uhABCeb29MmC3dSLjyJxkojdxVNEzeM,2207
|
|
38
38
|
fid/tasks/extract/frames.py,sha256=AXo5YYwcPqiGiNzIVh2rbgwdTAuOuFWQ_nVDlzTzOyo,506
|
|
39
39
|
fid/tasks/extract/keyframes.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
40
|
fid/tasks/extract/subtitles.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -48,7 +48,7 @@ fid/tasks/stream/http.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
48
48
|
fid/tasks/stream/rtmp.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
49
|
fid/tasks/stream/rtsp.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
fid/tasks/stream/srt.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
fid/tasks/stream/stream_interactive.py,sha256=
|
|
51
|
+
fid/tasks/stream/stream_interactive.py,sha256=0RrCBqxUEa803-MUtvHs7ESeT34d8GWx42SJ0CzAfjI,1446
|
|
52
52
|
fid/tasks/stream/udp.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
fid/tasks/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
54
|
fid/tasks/video/compressor.py,sha256=cOBjww_BLYQuccZR0O1TCw5eIif0-loTb-RuZ4eZ7VI,578
|
|
@@ -60,10 +60,10 @@ fid/tasks/video/resize.py,sha256=aQTGZDiwCW2RhfX_7DMc7S-mqTuYsqw5G91xkDRZ5Y0,677
|
|
|
60
60
|
fid/tasks/video/rotate.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
61
|
fid/tasks/video/speed.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
fid/tasks/video/trim.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
63
|
-
fid/tasks/video/video_interactive.py,sha256=
|
|
64
|
-
fid_ffmpeg-0.4.
|
|
65
|
-
fid_ffmpeg-0.4.
|
|
66
|
-
fid_ffmpeg-0.4.
|
|
67
|
-
fid_ffmpeg-0.4.
|
|
68
|
-
fid_ffmpeg-0.4.
|
|
69
|
-
fid_ffmpeg-0.4.
|
|
63
|
+
fid/tasks/video/video_interactive.py,sha256=maIXAtGnMpIAjI1Ydpl-JGBjWfkTqj86kLxXI6nzT00,1647
|
|
64
|
+
fid_ffmpeg-0.4.6.dist-info/licenses/LICENSE,sha256=F-pOyGrwdERPucmVHPPrD37KZZ7sphCDJeAzG5gxFOw,1091
|
|
65
|
+
fid_ffmpeg-0.4.6.dist-info/METADATA,sha256=UuiY8LRM37ipzVbmEaKlB3uA2H_sfvLi83JVC9pMwC4,4498
|
|
66
|
+
fid_ffmpeg-0.4.6.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
67
|
+
fid_ffmpeg-0.4.6.dist-info/entry_points.txt,sha256=wc8Iju3nkXAuyqF5NB1276l_AGtakuifMGR3D42dqB8,36
|
|
68
|
+
fid_ffmpeg-0.4.6.dist-info/top_level.txt,sha256=5jgogeo314G3j_oXUp3BE4wBE3t82ijRwLwF1KnYiDg,4
|
|
69
|
+
fid_ffmpeg-0.4.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|