LinuxScripts/mkvtomp4

25 lines
569 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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