youtube-dl into ffmpeg

This commit is contained in:
krumel
2021-12-26 17:35:20 +01:00
parent 5a1a0dfea6
commit e945d6153c

View File

@ -0,0 +1,9 @@
Benötigt `youtube-dl`, `parallel` und `ffmpeg`.
Holt sich die direkte Video-URL via youtube-dl und piped die Video und Sound-Url direkt in ffmpeg.
Ermöglicht alles was ffmpeg kann, z.B. herauschneiden eines Clips:
```bash
youtube-dl -g [url] | parallel -ss [start] -N 2 ffmpeg -i {1} -i {2} -map 0:v -map 1:a -t [time] -c copy out.webm
```