Is there a way I can do this? I'm backing up The Sopranos onto my media server and most episodes just have normal English subs. Some, however, also have a Forced track for foreign dialogue, but MakeMKV doesn't bother to correctly mark it I've just noticed.
So I need to find all the files with more than one sub track.
Is there an automated way to do this? Open them, count the tracks, write file names to a text file or something?
+ Reply to Thread
Results 1 to 8 of 8
-
-
Will that search subfolders? ie if I put that batch file in my "Sopranos" folder will it search my Season 1, Season 2 etc folders or will I need to rerun it for each season within that season's folder?
And for that matter what exactly is it doing at each step? -
Okay so that's a no on the subfolders now that I'm able to try it, although I managed to find a solution for that via Google.
It also works by popping up a MediaInfo window for each episode, and won't move on to the next episode until I manually close the MediaInfo window, which rather defeats the purpose of automating.
And it seems to just be writing the name of each episode into the text file, without regard for the number of subtitle tracks.
Needs a line break between file names as well. -
Try the batch file by jagabo in this thread: https://forum.videohelp.com/threads/383550-Mediainfo-CLI-to-creat-NFO
For %%F IN (*.mkv) do ("C:\Program Files\MediaInfoCLI\MediaInfo.exe" "%%F" >"%%~dpnF.NFO"). Replace NFO with txt for text files. A Mediainfo text file will be created for each file.
Then use Notepad++ to search the .txt files for "Language" https://www.ghacks.net/2016/09/16/use-notepad-to-find-text-in-all-files-of-a-folder/. It will show the name of the file and all the sub languages. -
-
It just needs to be made recursive with /R, although I don't recall whether that comes before or after %%a and have since deleted the batch file.
Similar Threads
-
Video edition with multiple audio tracks.
By djdan in forum Newbie / General discussionsReplies: 0Last Post: 18th Nov 2019, 15:14 -
How to find out the full mp4 link for multiple TS separated files
By massafera in forum Video Streaming DownloadingReplies: 5Last Post: 18th May 2018, 03:16 -
Compress MKV files with multiple audio tracks and subtitles
By tonyaldr in forum Video ConversionReplies: 1Last Post: 29th Jan 2018, 07:57 -
how to add multiple audio tracks to .mpg files
By basha11 in forum Newbie / General discussionsReplies: 4Last Post: 16th Mar 2016, 02:35 -
Chapters for MKV files with multiple tracks
By mBrane in forum Video ConversionReplies: 3Last Post: 24th Jun 2015, 21:04