天行健,君子以自强不息!
发布时间:2014-05-04 18:08:55
一、第三方库的编译与安装1. libfaac# tar -zxvf faac-1.28.tar.gz# cd faac-1.28# ./configure --prefix=/opt/YOUR_SDK_INSTALL_DIRECTORY --enable-static --disable-shared# make; make install2. libmp3lame# tar -zxvf lame-3.98.4.tar.gz# cd lame-3.98.4# ./configure --prefix=/opt/YOUR_SDK_INSTALL_DI.........【阅读全文】
发布时间:2014-04-29 18:01:11
从输入文件中抽取出原始的音频,视频数据# ffmpeg -i test.mp4 -vcodec copy -an video.h264# ffmpeg -i test.wmv -acodec copy -vn audio.wma# ffmpeg -i infile.mp4 -vcodec copy -an -f h264 video.h264# ffmpeg -i infile.ts -vcodec copy -f rawvideo -an raw.264......【阅读全文】
发布时间:2014-04-23 22:56:07
一、编译1. 编译前的修改1). apiexample.c LINE 19#include "avcodec.h"改成:#include "libavcodec/avcodec.h"2). apiexample.c LINE 145len = avcodec_decode_audio(c, (short *)outbuf, &out_size,改成:len = avcodec_decode_audio2(c, (short *)outbuf, &out_size,2. 编译生成# gcc apiexample.c -g .........【阅读全文】
发布时间:2014-04-19 22:17:39
四、主函数代码001 int main(int argc, char **argv)002 {003 const char *filename;004 AVOutputFormat *fmt;005 AVFormatContext *oc;006 AVStream *audio_st, *video_st;007 double audio_pts, video_pts;008 int i;&nb.........【阅读全文】
发布时间:2014-04-19 22:12:52
简介这个例子展示了如何使用FFmpeg SDK输出一个libavformat库所支持格式的媒体文件。一、重要的数据结构及函数列表I. 数据结构:(1) AVFormatContext(2) AVOutputFormat(3) AVInputFormat(4) AVCodecContext(5) AVCodec(6) AVFrame(7) AVPacket(8) AVPicture(9) AVStreamII. 初始化函数:1. av_register_al.........【阅读全文】