From faa1bf99edce76a428da001f42ecd17543c07a4c Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 14 Nov 2023 15:04:55 -0500 Subject: [PATCH] also convert mkv --- bash/dl.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bash/dl.sh b/bash/dl.sh index f127621..12e7415 100755 --- a/bash/dl.sh +++ b/bash/dl.sh @@ -13,6 +13,11 @@ do ffmpeg -i "$file" "$file.mp4" #rm "$file" done +for file in *.mkv +do + ffmpeg -i "$file" "$file.mp4" + #rm "$file" +done if [ $(wc -l < "$@") -eq $(wc -l < done.txt) ] then