fixed -ss being at the wrong place

This commit is contained in:
krumel
2021-12-26 17:36:29 +01:00
parent e945d6153c
commit c48f36f0fb

View File

@ -5,5 +5,5 @@ Holt sich die direkte Video-URL via youtube-dl und piped die Video und Sound-Url
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
youtube-dl -g [url] | parallel -N 2 ffmpeg -ss [start] -i {1} -i {2} -map 0:v -map 1:a -t [time] -c copy out.webm
```