This commit is contained in:
JMARyA 2020-06-11 05:04:00 +02:00
commit 0ef3bd7a55
No known key found for this signature in database
GPG key ID: 19BD48AEE60FA00B
8 changed files with 116 additions and 0 deletions

7
media Normal file
View file

@ -0,0 +1,7 @@
function convert() {
for i in *.$1; do ffmpeg -i "$i" "${i%.*}.$2"; done
}
function mkvToMp4() {
for i in *.mkv; do ffmpeg -i "$i" -map 0 -c copy "${i%.*}.mp4"; done
}