MediaInfo stopped working for me some days ago and no matter what I do, it doesn't work anymore (already tried reinstalling the program, etc, and that didn't help). Now I get a "Access violation in module "ntdll.dll" error. If you google it, you can see some other people reported the same issue recently, and the devs don't know how to fix it.
So, I need an alternate program to check the frame count of my videos. Do you guys know of any?
+ Reply to Thread
Results 1 to 11 of 11
-
-
Virtualdub, Virtualdub2?
If you need something in the command prompt:
Code:mp4box -info cputest-sample1.MP4 2>&1 | findstr "samples" Media Info: Language "Undetermined (und)" - Type "vide:avc1" - 15640 samples
Code:ffmpeg -i cputest-sample1.MP4 -map 0:v:0 -c copy -f null - 2>&1 | findstr "frame=" frame=15640 fps=0.0 q=-1.0 Lsize=N/A time=00:04:20.63 bitrate=N/A speed=3.43e+03x
-
I know about Virtualdub and use it regularly, but it can't help with this video since it's a .mkv, and the program can only open .avi.
Have never heard of this Virtualdub2 before though. I tried it out and seems like it really can open .mkv without problems. Thanks for informing me about it, guys. Looks like it's time to replace my old Virtualdub now. -
Don't forget about ffprobe.exe. It's a more direct command than using ffmpeg.exe.
Code:ffprobe -select_streams v -show_entries stream=nb_frames "foobar.mp4" [STREAM] nb_frames=500 [/STREAM]
Last edited by JVRaines; 24th Dec 2018 at 20:39.
-
or try mediainfoxp - it's a standalone version so put it in a folder other than windows/programs
--
"a lot of people are better dead" - prisoner KSC2-303 -
-
If you want to scan a huge number of files, you can right click on the file in Windows Explorer and then right click on one of the column headings, choose "More," and then check the "frame rate" and "length" columns. It won'd give you the frame count without multiply both columns, but you can export that into Excel and have it do that for you.
Similar Threads
-
ffmpeg vs ffprobe frame count speed
By Anime4000 in forum Newbie / General discussionsReplies: 6Last Post: 12th May 2019, 05:05 -
check for video file any lagness or frame drop without watching it manually
By helpme101 in forum Newbie / General discussionsReplies: 3Last Post: 8th Oct 2018, 00:14 -
AviSynth - Loop is Throwing Off Frame Count
By lomaidala in forum EditingReplies: 7Last Post: 17th Oct 2015, 12:47 -
MKV container - Get frame count without extracting (CFR source)?
By Interpolator in forum Video ConversionReplies: 4Last Post: 16th Aug 2015, 22:00 -
Deinterlacer changing total frame count and overall length of the video
By killerteengohan in forum DVD RippingReplies: 16Last Post: 15th Jun 2014, 14:56