Very interesting!pljones wrote:In case anyone needs it, here's a handy Windows ffmpeg script to turn anything into an AVI file (should preserve quality). Set the value for "ffmpeg" to the location of the ffmpeg.exe on your system and then save it somewhere.Then add a shortcut to the file to your {user}\AppData\Roaming\Microsoft\Windows\SendTo directory called something useful. You can then right-click, SendTo any (media) file and convert to something mediavst understands.Code: Select all
@echo off set ffmpeg="D:\Program Files\ffmpeg\bin\ffmpeg.exe" for %%f in (%*) do %ffmpeg% -hide_banner -threads auto -i "%%~sf" -q:a 0 -q:v 0 "%%~dpnf.avi" pause
Thank you pl!
