Hi!
I am writing a web application to read in MPEG-1, MPEG-2 and MPEG-4 files. I need to know the duration of the MPEG movie from the file itself.
I know the equation: Duration = file size / bit rate X 8
I am able to get the file size in my web application. I am also able to get the bit rate from the sequence header of the file.
Problem is: I can only get the correct bit rate only for movies with 30fps. If the movie has 25 fps, the bit rate is wrong and the duration is wrong.
Does anyone has any pointers for reading the bit rate of the movie? Are all the MPEG sequence headers the same? Is there a formula relating bit rate and frame rate?
Any suggestions are appreciated. Thanks
+ Reply to Thread
Results 1 to 5 of 5
-
-
You won't usually get the average bitrate from MPEG-2 files because anything can be written in the header. And if it's correct it's the max bitrate and not the average bitrate. Many will just say 9800, a completely meaningless number, whether 25fps or 29.97fps (or encoded as progressive 23.976fps). I don't know how you do find the average bitrate without parsing the entire file (the way Bitrate Viewer and DGIndex already do), but reading from the header isn't the right way. Why reinvent the wheel? Just use Bitrate Viewer and adapt it to your use.
-
Hi!
Thanks for your replies. I have no choice but to parse the binary file of MPEG. I am unble to use external applications because I am writing a web application which does not apply interaction with the programs in the hard disk. Doing that would incur security risks on the user side.
Does anyone know how people who write programs which read media files calculate the duration of the movie?
Many thanks.
Similar Threads
-
encoded video duration different than vob duration
By fatcharlie in forum Video ConversionReplies: 9Last Post: 4th Dec 2011, 10:04 -
Xvid4PSP extends the duration of the video file
By mark63534 in forum Newbie / General discussionsReplies: 3Last Post: 1st Apr 2010, 00:11 -
Windows Explorer Detail View to show MPEG duration?
By dejandr in forum Newbie / General discussionsReplies: 1Last Post: 21st Sep 2009, 05:36 -
file duration in CCE
By ecc in forum Video ConversionReplies: 12Last Post: 31st Jan 2009, 14:48