http://phecoopwm6x7azx26ctuqcp6673bbqkrqfeoiz2wwk36sady5tqbdpqd.onion/posts/bash/ffmpeg-converting-rmvb-to-x264-mp4.html
Which is probably for the best as it's best left buried in the shrouds of time Unfortunately, whilst sorting some old files, I found a bunch that were in RMVB format, so wanted to convert them to something a little more sane (and more widely supported) without sacrificing quality This snippet details how to convert a directory of RMVB format files to X264 MP4's with MP3 Audio Details Language: BASH Snippet for i in ` ls *.rmvb ` do newfname = $( echo $i | sed 's/\.rmvb/\.mp4/' ) ffmpeg -i...