From 22f5ac8fcec4dbfcc1f5033f18bc4eeca52a747d Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 31 Oct 2023 08:20:22 +0100 Subject: Made the side more retro! --- public/convert-mkv.html | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'public/convert-mkv.html') diff --git a/public/convert-mkv.html b/public/convert-mkv.html index f82fa49..b921a99 100755 --- a/public/convert-mkv.html +++ b/public/convert-mkv.html @@ -1,14 +1,17 @@ -Convert all MKV files into other formats

Convert all MKV files into other formats

note, May 14, 2023 on Mitja Felicijan's blog

You will need ffmpeg installed on your system. This will convert all MKV files into WebM format.

# Convert all MKV files into WebM format.
 find ./ -name '*.mkv' -exec bash -c 'ffmpeg -i "$0" -vcodec libvpx -acodec libvorbis -cpu-used 5 -threads 8 "${0%%.mp4}.webm"' {} \;
 
# Convert all MKV files into MP4 format.
 find ./ -name '*.mkv' -exec bash -c 'ffmpeg -i "$0" c:a copy -c:v copy -cpu-used 5 -threads 8 "${0%%.mp4}.mp4"' {} \;
-

Posts from blogs I follow around the net