fid-ffmpeg 0.4.6__py3-none-any.whl → 0.4.8__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/fid.py +2 -3
- fid/fid_interactive.py +2 -2
- fid/tasks/audio/audio_interactive.py +1 -1
- fid/tasks/audio/mute.py +8 -6
- fid/tasks/extract/audio.py +7 -6
- fid/tasks/extract/extract_interactive.py +2 -2
- fid/tasks/extract/frames.py +9 -8
- fid/tasks/info.py +6 -5
- fid/tasks/stream/stream_interactive.py +2 -2
- fid/tasks/video/compressor.py +9 -8
- fid/tasks/video/gif.py +8 -6
- fid/tasks/video/resize.py +10 -8
- fid/tasks/video/video_interactive.py +5 -5
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/METADATA +1 -1
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/RECORD +19 -19
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/WHEEL +0 -0
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/entry_points.txt +0 -0
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/licenses/LICENSE +0 -0
- {fid_ffmpeg-0.4.6.dist-info → fid_ffmpeg-0.4.8.dist-info}/top_level.txt +0 -0
fid/fid.py
CHANGED
|
@@ -28,9 +28,8 @@ def start(ctx : typer.Context):
|
|
|
28
28
|
fid_main(video_path)
|
|
29
29
|
break
|
|
30
30
|
else:
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
raise typer.Exit()
|
|
31
|
+
console.print(f"[red]Error: '{video_path}' is not a valid file path. Please try again.[/red]")
|
|
32
|
+
|
|
34
33
|
audio_main(app)
|
|
35
34
|
compress_main(app)
|
|
36
35
|
frames_main(app)
|
fid/fid_interactive.py
CHANGED
|
@@ -24,7 +24,7 @@ def fid_main(video_path):
|
|
|
24
24
|
raise typer.Exit()
|
|
25
25
|
|
|
26
26
|
if choice=="video editing":
|
|
27
|
-
|
|
27
|
+
video_main(video_path)
|
|
28
28
|
|
|
29
29
|
elif choice=="audio editing":
|
|
30
30
|
audio_main(video_path)
|
|
@@ -39,4 +39,4 @@ def fid_main(video_path):
|
|
|
39
39
|
encode_main(video_path)
|
|
40
40
|
|
|
41
41
|
elif choice=="exit":
|
|
42
|
-
|
|
42
|
+
raise typer.Exit()
|
fid/tasks/audio/mute.py
CHANGED
|
@@ -3,10 +3,12 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
def mute(video_path: Path):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
mute_out=video_path.with_stem(f"{video_path.stem}_muted").with_suffix(video_path.suffix)
|
|
11
|
+
subprocess.run(["ffmpeg", "-i", str(video_path), "-c", "copy", "-an", "-y", str(mute_out)], check=True)
|
|
12
|
+
|
|
6
13
|
def mute_main(app: typer.Typer):
|
|
7
|
-
|
|
8
|
-
def mute(video_path: Path):
|
|
9
|
-
ffmpeg()
|
|
10
|
-
ckvideo(video_path)
|
|
11
|
-
mute_out=video_path.with_stem(f"{video_path.stem}_muted").with_suffix(video_path.suffix)
|
|
12
|
-
subprocess.run(["ffmpeg", "-i", str(video_path), "-c", "copy", "-an", "-y", str(mute_out)], check=True)
|
|
14
|
+
app.command()(mute)
|
fid/tasks/extract/audio.py
CHANGED
|
@@ -3,10 +3,11 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
def audio(video_path: Path):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
audio_out=video_path.with_suffix(".mp3")
|
|
11
|
+
subprocess.run(["ffmpeg", "-i", str(video_path), "-vn", "-acodec", "libmp3lame", "-y", str(audio_out)], check=True)
|
|
6
12
|
def audio_main(app: typer.Typer):
|
|
7
|
-
|
|
8
|
-
def audio(video_path: Path):
|
|
9
|
-
ffmpeg()
|
|
10
|
-
ckvideo(video_path)
|
|
11
|
-
audio_out=video_path.with_suffix(".mp3")
|
|
12
|
-
subprocess.run(["ffmpeg", "-i", str(video_path), "-vn", "-acodec", "libmp3lame", "-y", str(audio_out)], check=True)
|
|
13
|
+
app.command()(audio)
|
|
@@ -40,7 +40,7 @@ def extract_main(video_path):
|
|
|
40
40
|
|
|
41
41
|
elif choice=="extract frames":
|
|
42
42
|
frames(video_path)
|
|
43
|
-
|
|
43
|
+
"""""""""
|
|
44
44
|
elif choice=="extract subtitles":
|
|
45
45
|
subtitles(video_path)
|
|
46
46
|
|
|
@@ -67,7 +67,7 @@ def extract_main(video_path):
|
|
|
67
67
|
|
|
68
68
|
elif choice=="extract attachments":
|
|
69
69
|
attachments(video_path)
|
|
70
|
-
|
|
70
|
+
"""""""""
|
|
71
71
|
elif choice=="Back to main menu":
|
|
72
72
|
return
|
|
73
73
|
|
fid/tasks/extract/frames.py
CHANGED
|
@@ -3,12 +3,13 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
def frames(video_path: Path):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
Fdir= video_path.parent
|
|
11
|
+
frames_out= Fdir / "Frames" / video_path.stem
|
|
12
|
+
frames_out.mkdir(parents=True,exist_ok=True)
|
|
13
|
+
subprocess.run(["ffmpeg", "-i", str(video_path),str(frames_out/ "frame_%02d.png")],check=True )
|
|
6
14
|
def frames_main(app: typer.Typer):
|
|
7
|
-
|
|
8
|
-
def frames(video_path: Path):
|
|
9
|
-
ffmpeg()
|
|
10
|
-
ckvideo(video_path)
|
|
11
|
-
Fdir= video_path.parent
|
|
12
|
-
frames_out= Fdir / "Frames" / video_path.stem
|
|
13
|
-
frames_out.mkdir(parents=True,exist_ok=True)
|
|
14
|
-
subprocess.run(["ffmpeg", "-i", str(video_path),str(frames_out/ "frame_%02d.png")],check=True )
|
|
15
|
+
app.command()(frames)
|
fid/tasks/info.py
CHANGED
|
@@ -3,9 +3,10 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from .initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
def info(video_path: Path):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
subprocess.run(["ffprobe", "-v", "error", "-show_format", "-show_streams", str(video_path)], check=True)
|
|
6
11
|
def info_main(app: typer.Typer):
|
|
7
|
-
|
|
8
|
-
def info(video_path: Path):
|
|
9
|
-
ffmpeg()
|
|
10
|
-
ckvideo(video_path)
|
|
11
|
-
subprocess.run(["ffprobe", "-v", "error", "-show_format", "-show_streams", str(video_path)], check=True)
|
|
12
|
+
app.command()(info)
|
|
@@ -27,7 +27,7 @@ def stream_main(video_path):
|
|
|
27
27
|
|
|
28
28
|
if choice is None:
|
|
29
29
|
raise typer.Exit()
|
|
30
|
-
|
|
30
|
+
"""""""""
|
|
31
31
|
if choice=="stream with hls":
|
|
32
32
|
hls(video_path)
|
|
33
33
|
|
|
@@ -48,7 +48,7 @@ def stream_main(video_path):
|
|
|
48
48
|
|
|
49
49
|
elif choice=="stream with http":
|
|
50
50
|
http(video_path)
|
|
51
|
-
|
|
51
|
+
"""""""""
|
|
52
52
|
elif choice=="Back to main menu":
|
|
53
53
|
return
|
|
54
54
|
|
fid/tasks/video/compressor.py
CHANGED
|
@@ -3,12 +3,13 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
subprocess.run(
|
|
6
|
+
|
|
7
|
+
def compress(video_path: Path, crf: int=28):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
compress_out= video_path.with_stem(f"{video_path.stem}_compressed").with_suffix(".mkv")
|
|
11
|
+
subprocess.run(
|
|
13
12
|
["ffmpeg", "-i", str(video_path),"-c:v", "libx264", "-crf", str(crf), "-preset","medium","-c:a","aac","-b:a","96k","-y",str(compress_out),]
|
|
14
|
-
, check=True)
|
|
13
|
+
, check=True)
|
|
14
|
+
def compress_main(app: typer.Typer):
|
|
15
|
+
app.command()(compress)
|
fid/tasks/video/gif.py
CHANGED
|
@@ -3,10 +3,12 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
def gif(video_path: Path):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
gif_out=video_path.with_suffix(".gif")
|
|
11
|
+
subprocess.run(["ffmpeg", "-i", str(video_path), "-t", "3", "-vf", "scale=320:-1", "-y", str(gif_out)], check=True)
|
|
12
|
+
|
|
6
13
|
def gif_main(app: typer.Typer):
|
|
7
|
-
|
|
8
|
-
def gif(video_path: Path):
|
|
9
|
-
ffmpeg()
|
|
10
|
-
ckvideo(video_path)
|
|
11
|
-
gif_out=video_path.with_suffix(".gif")
|
|
12
|
-
subprocess.run(["ffmpeg", "-i", str(video_path), "-t", "3", "-vf", "scale=320:-1", "-y", str(gif_out)], check=True)
|
|
14
|
+
app.command()(gif)
|
fid/tasks/video/resize.py
CHANGED
|
@@ -3,13 +3,12 @@ import subprocess
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from ...initial_files.error_handling import ffmpeg , ckvideo
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
subprocess.run(
|
|
6
|
+
|
|
7
|
+
def resize(video_path: Path, width: int):
|
|
8
|
+
ffmpeg()
|
|
9
|
+
ckvideo(video_path)
|
|
10
|
+
resize_out= video_path.with_stem(f"{video_path.stem}_{width}w").with_suffix(".mp4")
|
|
11
|
+
subprocess.run(
|
|
13
12
|
["ffmpeg",
|
|
14
13
|
"-i", str(video_path),
|
|
15
14
|
"-vf", f"scale={width}:-1",
|
|
@@ -17,4 +16,7 @@ def resize_main(app: typer.Typer):
|
|
|
17
16
|
"-preset", "medium",
|
|
18
17
|
"-c:a", "copy",
|
|
19
18
|
"-y",
|
|
20
|
-
str(resize_out)], check=True)
|
|
19
|
+
str(resize_out)], check=True)
|
|
20
|
+
|
|
21
|
+
def resize_main(app: typer.Typer):
|
|
22
|
+
app.command()(resize)
|
|
@@ -5,7 +5,7 @@ from .compressor import compress
|
|
|
5
5
|
#from .crop import crop
|
|
6
6
|
#from .fps import fps
|
|
7
7
|
from .gif import gif
|
|
8
|
-
from .resize import resize
|
|
8
|
+
#from .resize import resize
|
|
9
9
|
#from .rotate import rotate
|
|
10
10
|
#from .speed import speed
|
|
11
11
|
#from .trim import trim
|
|
@@ -33,11 +33,11 @@ def video_main(video_path):
|
|
|
33
33
|
raise typer.Exit()
|
|
34
34
|
|
|
35
35
|
if choice=="compress the video":
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
compress(video_path)
|
|
37
|
+
|
|
38
38
|
elif choice=="make gif":
|
|
39
39
|
gif(video_path)
|
|
40
|
-
|
|
40
|
+
"""""""""
|
|
41
41
|
elif choice=="speed up/down":
|
|
42
42
|
speed(video_path)
|
|
43
43
|
|
|
@@ -58,7 +58,7 @@ def video_main(video_path):
|
|
|
58
58
|
|
|
59
59
|
elif choice=="trim video":
|
|
60
60
|
trim(video_path)
|
|
61
|
-
|
|
61
|
+
"""""""""
|
|
62
62
|
elif choice=="Back to main menu":
|
|
63
63
|
return
|
|
64
64
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
fid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
fid/fid.py,sha256=
|
|
3
|
-
fid/fid_interactive.py,sha256=
|
|
2
|
+
fid/fid.py,sha256=HYobyALoaydu7Z8T-_BCKHEcF--MT7Xac9EcshIhoEU,1109
|
|
3
|
+
fid/fid_interactive.py,sha256=kaEL_voTWf_lxjERTCaCrPBskOxsM_p7ElOShcZFsAk,1279
|
|
4
4
|
fid/welcome.py,sha256=2zjllb-_E1MhE6cBRX_w06Rk_5WZXZZ55Ec9MyD8W3M,838
|
|
5
5
|
fid/initial_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
fid/initial_files/error_handling.py,sha256=Z1gSb90rS2Vy4VZHS9Zk7OHPL2o6NOw4ipzBQTmjLbo,351
|
|
7
7
|
fid/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
fid/tasks/info.py,sha256=
|
|
8
|
+
fid/tasks/info.py,sha256=lNj8mSI0FdjcQ8LOZndySkbA4UGGBBjFoS8EDmMHeMM,358
|
|
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=6iwNX8pa_SNG_cFRIR3U-9AGWGkBK2IH556NXn0KdZM,2533
|
|
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
|
|
@@ -17,7 +17,7 @@ fid/tasks/audio/denoise.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
17
17
|
fid/tasks/audio/equalizer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
fid/tasks/audio/fade.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
fid/tasks/audio/mix.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
fid/tasks/audio/mute.py,sha256=
|
|
20
|
+
fid/tasks/audio/mute.py,sha256=1lNHXO0RVADA_-sz8jMlaHVgtlfmI6Imalpf5BSUxQY,455
|
|
21
21
|
fid/tasks/audio/normalize.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
fid/tasks/audio/replace.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
fid/tasks/audio/speed.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,12 +30,12 @@ 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
|
|
32
32
|
fid/tasks/extract/attachments.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
fid/tasks/extract/audio.py,sha256=
|
|
33
|
+
fid/tasks/extract/audio.py,sha256=eWB3Y7xjmT2JQhhfF_v0EY5krCkkepE9IeqqqXEVJ9M,420
|
|
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=
|
|
38
|
-
fid/tasks/extract/frames.py,sha256=
|
|
37
|
+
fid/tasks/extract/extract_interactive.py,sha256=ClZIN55V89Oii-hH7HA9n7txP2wA7ihoL8_sSh4rTzI,2241
|
|
38
|
+
fid/tasks/extract/frames.py,sha256=hJ4-yElJSh8Vjr7wAaP-STr8D83-EkILheTmhS98c9w,487
|
|
39
39
|
fid/tasks/extract/keyframes.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
40
|
fid/tasks/extract/subtitles.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
fid/tasks/extract/subtitles_convert.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -48,22 +48,22 @@ 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=BHCNFhPEfQnDgGpnHEHPacsFolPpVEvWiQslGdCVicE,1480
|
|
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
|
-
fid/tasks/video/compressor.py,sha256=
|
|
54
|
+
fid/tasks/video/compressor.py,sha256=c5S6gDnE9u2RaMsoas_6tZSZOT74PhIfrrIYgZ0ihmE,569
|
|
55
55
|
fid/tasks/video/concat.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
56
|
fid/tasks/video/crop.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
fid/tasks/video/fps.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
fid/tasks/video/gif.py,sha256=
|
|
59
|
-
fid/tasks/video/resize.py,sha256=
|
|
58
|
+
fid/tasks/video/gif.py,sha256=bhMzV77zgpW9qVjDYJnQl1IqKJulDR1uSl-6eTckHGI,414
|
|
59
|
+
fid/tasks/video/resize.py,sha256=KnIDdKk4HA77skQpClvLw82MdEamBtrCZfPnuZniTws,668
|
|
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=-Yir849udL7VZah8Z86_TbtXpg8kY9vUXn_q9h9EYpI,1688
|
|
64
|
+
fid_ffmpeg-0.4.8.dist-info/licenses/LICENSE,sha256=F-pOyGrwdERPucmVHPPrD37KZZ7sphCDJeAzG5gxFOw,1091
|
|
65
|
+
fid_ffmpeg-0.4.8.dist-info/METADATA,sha256=KdWC3eqMuoe8fj4ZlgpIeQAVhvcmDKjw_xM_FnGsNFA,4498
|
|
66
|
+
fid_ffmpeg-0.4.8.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
67
|
+
fid_ffmpeg-0.4.8.dist-info/entry_points.txt,sha256=wc8Iju3nkXAuyqF5NB1276l_AGtakuifMGR3D42dqB8,36
|
|
68
|
+
fid_ffmpeg-0.4.8.dist-info/top_level.txt,sha256=5jgogeo314G3j_oXUp3BE4wBE3t82ijRwLwF1KnYiDg,4
|
|
69
|
+
fid_ffmpeg-0.4.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|