A typical complete pattern for batch processing with ffmpeg might look like this:

for %i in (*.mkv) do ffmpeg -i "%i" -c:v libx264 -c:a aac "%~ni.mp4" If you meant to search for a (e.g., for a torrent or direct download), a typical release naming convention would be:

ffmpeg -i "Murdoch.Mysteries.S05E01.mkv" -c:v libx264 -c:a aac "Murdoch.Mysteries.S05E01.mp4" Or for batch conversion on Windows (CMD):

Insights