Added file to convert mkv to mp4

This commit is contained in:
parent 2fa05a23e1
commit 226d786644
1 changed files with 25 additions and 0 deletions

25
mkvtomp4 Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
#Скрипт конвертирует файл формата mkv в формат mp4
#Используется ffmpeg
#Параметрами 1 и 2 можно задать имена входного и выходного файлов
if [ -n "$1" ]
then
input=$1
if [ -n "$2" ]
then
output=$2
else
output=$input".mp4"
fi
if [ -e $input ]
then
ffmpeg -i $input -vcodec copy -acodec mp3 $output
else
echo "Файл не найден"
fi
else
echo "Не задано имя входного файла"
fi