Is there's such tools that can do a batch work to scan the entire mkv videos (1680 videos) and give results back to me so that I can encode them manually using handbrake software. Or is there's such tool that can actually find L4.0 or lower, then automatically re-encode for me?
Right-clicking on a file then "Media Info" to check every file would take me forever
Handbrake is no problem, take 5-10 mins per job - I can queue them up and leave it overnight.
Reason for this, appears that my Nvidia Sheild TV does not work well with L3.1? - Video stuttering, so I had to reencode into L4.1 and it works perfectly.
Thanks
Colt
+ Reply to Thread
Results 1 to 5 of 5
-
-
-
You can do this with FFmpeg. Put the following in a batch file with paths appropriate to your file locations.
Code:@echo off for %%M in (c:\path\to\*.mkv) do ( c:\path\to\ffprobe.exe -v quiet -select_streams v -show_streams "%%M" 1>probe.txt for /f "delims== tokens=1,2" %%P in (probe.txt) do if %%P==level if %%Q lss 41 ffmpeg -y -i %%M -crf 20 -level 41 -c:a copy "%%~nM_new.mkv" )
Last edited by JVRaines; 26th Nov 2018 at 14:51.
-
Similar Threads
-
Need to manually delete item from iPod Nano
By smike in forum Portable VideoReplies: 0Last Post: 12th Oct 2017, 23:57 -
Aegisub - batch support? or better way to batch process/edit subtitles?
By Restricted in forum SubtitleReplies: 7Last Post: 5th Sep 2017, 22:10 -
Best way to manually extract the subtitles from Video_TS folder ?
By Tigermtl in forum Newbie / General discussionsReplies: 3Last Post: 6th Mar 2017, 12:30 -
[BATCH PROCESSING] how to replace CHOOSE.EXE in a batch routine?
By marcorocchini in forum Newbie / General discussionsReplies: 3Last Post: 10th Nov 2015, 03:33 -
Can I manually change an .mp4 to .m4v by ch.....?
By Ganesh Ujwal in forum Video ConversionReplies: 4Last Post: 27th Jan 2015, 01:16