Don't re-encode streams

This commit is contained in:
Jaidyn Ann 2021-07-31 21:51:32 -05:00
parent 1f30526511
commit 6c939a338c

View File

@ -21,7 +21,7 @@ download_url() {
fi
curl -b "$COOKIES" -o "${OUTPUT}.srt" "$(caption_url "$sub" "$captions_key")"
ffmpeg -i "$m3u8" "${OUTPUT}.mp4"
ffmpeg -i "$m3u8" -c copy "${OUTPUT}.mkv"
}