Hmmm I apologize if this isn't totally about mpeg4.
Is there a raw form for videos? Like for audio, there is PCM which is the digital approximation of the analog signal. How about for videos? Like, what is the final output of the decompression stage, regardless of file format. How are the pictures represented, and displayed? (programming wise) For audio you just play the raw format...
Hope you guys have the answer. Thanks!
+ Reply to Thread
Results 1 to 4 of 4
-
-
older media players used 24bit RGB as the ouput, that soon adds up to a LOT of data. these days the video is a YUV overlay handled in hardware by the grpahics card, so it's probably not as simple as you'd hoped
-
Raw form is just uncompressed image. 24bit RGB or
24bit RGB+8bit alpha = 32bit RGBA. YUV is used for TV
other words Y,Cb,Cr Luminance(Y),Chrominance(Cb,Cr) 4:2:0
4:2:2,4:4:4. YUV is basicaly 16bit but u can use coefficients to
convert to RGB and because they are real numbers there can be more than 16bits of colors after conversion to RGB.
Image is represented usually as a bitmap structure BITMAPINFO
or class CBitmap(C++ talking).
It's simple but u have to read a little about it. -
Thank you very much! I have encountered RGB and YUV before but I was not sure of their difference and if they really are the raw form... Thanks
Similar Threads
-
Smooth frame by frame accelerated video playback?
By Malachaidc in forum Newbie / General discussionsReplies: 10Last Post: 30th Jul 2012, 11:40 -
extracting jpeg frame by frame from video
By goofymickey in forum ProgrammingReplies: 0Last Post: 16th Dec 2010, 07:02 -
Best software for Frame by Frame Video Edit?
By VEBouto in forum Newbie / General discussionsReplies: 5Last Post: 8th Feb 2010, 16:28 -
Suggest a video editor for frame-by-frame editing
By ontherocks in forum Newbie / General discussionsReplies: 14Last Post: 24th Apr 2008, 09:36 -
What Video editor's can cut frame by frame?
By VEBouto in forum Newbie / General discussionsReplies: 19Last Post: 28th Oct 2007, 01:31