From c48f36f0fb6f9171054032ffde0b32c41cb2ed37 Mon Sep 17 00:00:00 2001 From: krumel Date: Sun, 26 Dec 2021 17:36:29 +0100 Subject: [PATCH] fixed -ss being at the wrong place --- Snippets/Youtube-dl into ffmpeg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snippets/Youtube-dl into ffmpeg.md b/Snippets/Youtube-dl into ffmpeg.md index 8d82079..746e237 100644 --- a/Snippets/Youtube-dl into ffmpeg.md +++ b/Snippets/Youtube-dl into ffmpeg.md @@ -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 ``` \ No newline at end of file