dragon-ball-mkv-to-mp4/app.sh

11 lines
315 B
Bash
Raw Normal View History

2023-01-25 23:43:44 +00:00
# Remove all single quotes from all MKV file names in the directory.
for i in *.mkv; do
ABC="${i//\'}"
mv ./"$i" ./"$ABC"
done
# Render all MKV files in the directory with burned-in subtitles and Japanese audio.
for i in *.mkv; do
ffmpeg -i "$i" -vf "subtitles='$i'" -map 0:v -map 0:a:1 "$i.mp4";
done