From 718324f34b4875a97b6dd494912da18c84942552 Mon Sep 17 00:00:00 2001 From: liberodark Date: Fri, 29 May 2020 16:16:53 +0200 Subject: [PATCH] Update convert.sh --- conf/convert.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/convert.sh b/conf/convert.sh index a0678c1..08abae7 100644 --- a/conf/convert.sh +++ b/conf/convert.sh @@ -2,5 +2,5 @@ for file in $(find /home/yunohost.app/streama/ -iname "*.mkv" -o -iname "*.avi") do ffmpeg -i "$file" -vcodec h264 -acodec aac -strict -2 "${file%.*}.mp4" - rm "$file" + rm -f "$file" done