分类: LINUX
2013-09-11 17:59:39
Movie files have a few basic components. First, the file itself is called a container, and the type of container determines where the information in the file goes. Examples of containers are AVI and Quicktime. Next, you have a bunch of streams; for example, you usually have an audio stream and a video stream. (A "stream" is just a fancy word for "a succession of data elements made available over time".) The data elements in a stream are called frames. Each stream is encoded by a different kind of codec. The codec defines how the actual data is COded and DECoded - hence the name CODEC. Examples of codecs are DivX and MP3. Packets are then read from the stream. Packets are pieces of data that can contain bits of data that are decoded into raw frames that we can finally manipulate for our application. For our purposes, each packet contains complete frames, or multiple frames in the case of audio.
At its very basic level, dealing with video and audio streams is very easy:
10 OPEN video_stream FROM video.avi 20 READ packet FROM video_stream INTO frame 30 IF frame NOT COMPLETE GOTO 20 40 DO SOMETHING WITH frame 50 GOTO 20Handling multimedia with ffmpeg is pretty much as simple as this program, although some programs might have a very complex "DO SOMETHING" step. So in this tutorial, we're going to open a file, read from the video stream inside it, and our DO SOMETHING is going to be writing the frame to a PPM file.
First, let's see how we open a file in the first place. With ffmpeg, you have to first initialize the library. (Note that some systems might have to use
#includeThis registers all available file formats and codecs with the library so they will be used automatically when a file with the corresponding format/codec is opened. Note that you only need to call () once, so we do it here in main(). If you like, it's possible to register only certain individual file formats and codecs, but there's usually no reason why you would have to do that.#include ... int main(int argc, charg *argv[]) { ();
Now we can actually open the file:
*pFormatCtx; // Open video file if((&pFormatCtx, argv[1], NULL, 0, NULL)!=0) return -1; // Couldn't open fileWe get our filename from the first argument. This function reads the file header and stores information about the file format in the structure we have given it. The last three arguments are used to specify the file format, buffer size, and format options, but by setting this to NULL or 0, libavformat will auto-detect these.
This function only looks at the header, so next we need to check out the stream information in the file.:
// Retrieve stream information if((pFormatCtx)<0) return -1; // Couldn't find stream informationThis function populates pFormatCtx->streams with the proper information. We introduce a handy debugging function to show us what's inside:
// Dump information about file onto standard error dump_format(pFormatCtx, 0, argv[1], 0);Now pFormatCtx->streams is just an array of pointers, of size pFormatCtx->nb_streams, so let's walk through it until we find a video stream.
int i; *pCodecCtx; // Find the first video stream videoStream=-1; for(i=0; iThe stream's information about the codec is in what we call the "codec context." This contains all the information about the codec that the stream is using, and now we have a pointer to it. But we still have to find the actual codec and open it:nb_streams; i++) if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO) { videoStream=i; break; } if(videoStream==-1) return -1; // Didn't find a video stream // Get a pointer to the codec context for the video stream pCodecCtx=pFormatCtx->streams[videoStream]->codec;
AVCodec *pCodec; // Find the decoder for the video stream pCodec=(pCodecCtx->codec_id); if(pCodec==NULL) { fprintf(stderr, "Unsupported codec!\n"); return -1; // Codec not found } // Open codec if((pCodecCtx, pCodec)<0) return -1; // Could not open codecSome of you might remember from the old tutorial that there were two other parts to this code: addingCODEC_FLAG_TRUNCATED to pCodecCtx->flags and adding a hack to correct grossly incorrect frame rates. These two fixes aren't in ffplay.c anymore, so I have to assume that they are not necessary anymore. There's another difference to point out since we removed that code: pCodecCtx->time_base now holds the frame rate information. time_base is a struct that has the numerator and denominator (). We represent the frame rate as a fraction because many codecs have non-integer frame rates (like NTSC's 29.97fps).
Now we need a place to actually store the frame:
*pFrame; // Allocate video frame pFrame=();Since we're planning to output PPM files, which are stored in 24-bit RGB, we're going to have to convert our frame from its native format to RGB. ffmpeg will do these conversions for us. For most projects (including ours) we're going to want to convert our initial frame to a specific format. Let's allocate a frame for the converted frame now.
// Allocate an structure pFrameRGB=(); if(pFrameRGB==NULL) return -1;Even though we've allocated the frame, we still need a place to put the raw data when we convert it. We use to get the size we need, and allocate the space manually:
uint8_t *buffer; int numBytes; // Determine required buffer size and allocate buffer numBytes=(PIX_FMT_RGB24, pCodecCtx->width, pCodecCtx->height); buffer=(uint8_t *)(numBytes*sizeof(uint8_t));is ffmpeg's malloc that is just a simple wrapper around malloc that makes sure the memory addresses are aligned and such. It will not protect you from memory leaks, double freeing, or other malloc problems.
Now we use to associate the frame with our newly allocated buffer. About the cast: the AVPicture struct is a subset of the struct - the beginning of the AVFrame struct is identical to the AVPicture struct.
// Assign appropriate parts of buffer to image planes in pFrameRGB // Note that pFrameRGB is an , but AVFrame is a superset // of (( *)pFrameRGB, buffer, PIX_FMT_RGB24, pCodecCtx->width, pCodecCtx->height);Finally! Now we're ready to read from the stream!
What we're going to do is read through the entire video stream by reading in the packet, decoding it into our frame, and once our frame is complete, we will convert and save it.
int frameFinished; packet; i=0; while((pFormatCtx, &packet)>=0) { // Is this a packet from the video stream? if(packet.stream_index==videoStream) { // Decode video frame (pCodecCtx, pFrame, &frameFinished, packet.data, packet.size); // Did we get a video frame? if(frameFinished) { // Convert the image from its native format to RGB (( *)pFrameRGB, PIX_FMT_RGB24, (*)pFrame, pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height); // Save the frame to disk if(++i<=5) SaveFrame(pFrameRGB, pCodecCtx->width, pCodecCtx->height, i); } } // Free the packet that was allocated by (&packet); }
A note on packetsTechnically a packet can contain partial frames or other bits of data, but ffmpeg's parser ensures that the packets we get contain either complete or multiple frames.
Now all we need to do is make the SaveFrame function to write the RGB information to a file in PPM format. We're going to be kind of sketchy on the PPM format itself; trust us, it works.
void SaveFrame( *pFrame, int width, int height, int iFrame) { FILE *pFile; char szFilename[32]; int y; // Open file sprintf(szFilename, "frame%d.ppm", iFrame); pFile=fopen(szFilename, "wb"); if(pFile==NULL) return; // Write header fprintf(pFile, "P6\n%d %d\n255\n", width, height); // Write pixel data for(y=0; yWe do a bit of standard file opening, etc., and then write the RGB data. We write the file one line at a time. A PPM file is simply a file that has RGB information laid out in a long string. If you know HTML colors, it would be like laying out the color of each pixel end to end like #ff0000#ff0000.... would be a red screen. (It's stored in binary and without the separator, but you get the idea.) The header indicated how wide and tall the image is, and the max size of the RGB values.data[0]+y*pFrame->linesize[0], 1, width*3, pFile); // Close file fclose(pFile); }
Now, going back to our main() function. Once we're done reading from the video stream, we just have to clean everything up:
// Free the RGB image (buffer); (pFrameRGB); // Free the YUV frame (pFrame); // Close the codec avcodec_close(pCodecCtx); // Close the video file (pFormatCtx); return 0;You'll notice we use for the memory we allocated with avcode_alloc_frame and .
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
编译
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//ffmpeg
tar -xf ffmpeg-2.0.1.tar.bz2
./configure --prefix=/opt/libffmpeg/host --disable-yasm --enable-static
make && make install
//tutorial01.c
gcc -o tutorial01 tutorial01.c -lavutil -lavformat -lavcodec -lswscale -lz -lm -L/opt/libffmpeg/host/lib/ -I/opt/libffmpeg/host/include
./tutorial01 /root/test.avi || ./tu rtsp://192.168.1.1/test_stream
点击(此处)折叠或打开