A very helpful feature for managing TV show libraries (like Season 16 of Murdoch Mysteries) is using to automatically read the metadata from the video files and rename them to the standard Plex/Jellyfin/Kodi naming convention ( Show - SxxExx - Title.ext ).
:: Get the Episode Number for /f "delims=" %%d in ('ffprobe -v error -show_entries format_tags=episode_sort -of default^=noprint_wrappers^=1:nokey=1 "%%f" 2^>nul') do set EPISODE=%%d
ffmpeg -i "input.mkv" -sn -c:v copy -c:a copy "output_no_subs.mkv" murdoch mysteries season 16 ffmpeg
If you're trying to download episodes from a streaming service, be aware that many services have DRM protection, making direct download or manipulation tricky and potentially against their terms of service.
This write-up covers common ffmpeg operations for managing video files of Murdoch Mysteries Season 16 (e.g., remuxing, re-encoding, compression, or extracting audio/subtitles). Adjust input/output filenames as needed. A very helpful feature for managing TV show
ffmpeg -i "input.mkv" -c:v libx265 -crf 26 -c:a aac -b:a 128k "Murdoch.S16E01.compressed.mp4"
If you have episodes of "Murdoch Mysteries" Season 16 in a format that doesn't play well on your device, FFmpeg can convert them. For example: Adjust input/output filenames as needed
Here is a solution and a breakdown of how to use it.