16 lines
457 B
Makefile
16 lines
457 B
Makefile
|
|
ORIGINAL_SUBS=original-subs.fr.vtt
|
|
UNSYNCRONIZED=1-ere-french-raw.vtt
|
|
VIDEO=1ere-introcut.mp4
|
|
|
|
cleansubs:
|
|
python parse-subs.py $(ORIGINAL_SUBS)
|
|
ffmpeg -i 1ere.mkv -i output.vtt -vcodec copy -acodec copy -c:s mov_text test.mp4 -y
|
|
|
|
getsubs:
|
|
yt-dlp --write-auto-subs --sub-lang=fr --skip-download https://www.youtube.com/watch?v=WRq2197FlMw -o original-subs
|
|
|
|
# omit the music
|
|
clip:
|
|
ffmpeg -ss 3:18 -i 1ere-combined.mp4 -vcodec copy -acodec copy $(VIDEO)
|