9 lines
344 B
Markdown
9 lines
344 B
Markdown
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
|
|
``` |