Hi.
I have a problem.
My collection of tv-shows (about 18 000 episodes) is a mix of subtitled and non-subtitled episodes.
I would like to generate a list of all subtitle tracks for all episodes with some kind of a batch script.
The list could be as simple as "Filename.s01e01.mkv - eng, no, sv" or separate lines for each subtitle if it's easier this way.
The reason for this is to find subbed versions for everything.
Is this possible?
+ Reply to Thread
Results 1 to 5 of 5
-
-
You could download a static build of ffprobe.exe and put it in your path
Then use a batch job like
Code:@echo off echo. >> SubTitles.log echo %1 >> SubTitles.log ffprobe %1 2> temp.txt find /I "subtitle" < temp.txt >> SubTitles.log
Code:for %h in (*.mkv *.mp4 *.avi) do FindSub %h
-
THANK YOU!
This should be exactly what I am looking for.
I created a custom view and it's now in the process of generating info. The program is "Not Responding" but memory usage increases so I hope it will be done in a few hours.
I did a test with exporting and the best solution seemed to be export as CSV and import in Excel for easy sorting. -
Similar Threads
-
Downloading caption/subtitle tracks
By tharsim in forum Video Streaming DownloadingReplies: 0Last Post: 1st Jan 2016, 19:32 -
Joining 2 or more (mkv) video and subtitle tracks on a macbook
By okizen in forum Newbie / General discussionsReplies: 2Last Post: 26th Dec 2015, 03:31 -
Embedding TWO Subtitle Tracks in Video
By Chenn2 in forum SubtitleReplies: 13Last Post: 26th Jan 2013, 22:20 -
DVD to h.264 -- with multiple audio and subtitle tracks
By Ozo in forum DVD RippingReplies: 12Last Post: 16th Nov 2012, 06:34 -
Combine subtitle tracks in MKV
By Hikaru-Shindo in forum SubtitleReplies: 0Last Post: 16th May 2012, 03:42