init
This commit is contained in:
commit
0ef3bd7a55
8 changed files with 116 additions and 0 deletions
7
media
Normal file
7
media
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue