实例介绍
ffmpeg项目源代码编译,生成exe文件,配上dll库即可执行。 环境:Win7+VS2013
【实例截图】
【核心代码】
89cfa400-e512-4382-ba98-b49e028faad8
├── ffmpeg-2.4.2
│ ├── bprint.c
│ ├── bprint.h
│ ├── cmdutils_common_opts.h
│ ├── cmdutils.cpp
│ ├── cmdutils.h
│ ├── cmdutils_opencl.c
│ ├── config.h
│ ├── Debug
│ │ ├── cmdutils.obj
│ │ ├── ffmpeg-2.4.2.log
│ │ ├── ffmpeg-2.4.2.obj
│ │ ├── ffmpeg-2.4.2.pch
│ │ ├── ffmpeg-2.4.2.tlog
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── ffmpeg-2.4.2.lastbuildstate
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ └── link.write.1.tlog
│ │ ├── ffmpeg_dxva2.obj
│ │ ├── ffmpeg_filter.obj
│ │ ├── ffmpeg.obj
│ │ ├── ffmpeg_opt.obj
│ │ ├── stdafx.obj
│ │ ├── vc120.idb
│ │ └── vc120.pdb
│ ├── ffmpeg-2.4.2.cpp
│ ├── ffmpeg-2.4.2.vcxproj
│ ├── ffmpeg-2.4.2.vcxproj.filters
│ ├── ffmpeg-2.4.2.vcxproj.user
│ ├── ffmpeg.cpp
│ ├── ffmpeg_dxva2.cpp
│ ├── ffmpeg_filter.cpp
│ ├── ffmpeg.h
│ ├── ffmpeg_opt.cpp
│ ├── ffmpeg_vda.c
│ ├── ffmpeg_vdpau.c
│ ├── include
│ │ ├── getopt.h
│ │ ├── inttypes.h
│ │ ├── libavcodec
│ │ │ ├── aac_ac3_parser.h
│ │ │ ├── aacdectab.h
│ │ │ ├── aacenc.h
│ │ │ ├── aac.h
│ │ │ ├── aac_parser.h
│ │ │ ├── aacpsy.h
│ │ │ ├── aactab.h
│ │ │ ├── aandcttab.h
│ │ │ ├── ac3dec_data.h
│ │ │ ├── ac3dec.h
│ │ │ ├── ac3.h
│ │ │ ├── ac3_parser.h
│ │ │ ├── ac3tab.h
│ │ │ ├── acelp_filters.h
│ │ │ ├── acelp_pitch_delay.h
│ │ │ ├── acelp_vectors.h
│ │ │ ├── adx.h
│ │ │ ├── atrac1data.h
│ │ │ ├── atrac3data.h
│ │ │ ├── atrac.h
│ │ │ ├── audioconvert.h
│ │ │ ├── avcodec.h
│ │ │ ├── avfft.h
│ │ │ ├── bethsoftvideo.h
│ │ │ ├── bmp.h
│ │ │ ├── bytestream.h
│ │ │ ├── cabac.h
│ │ │ ├── cavsdata.h
│ │ │ ├── cavs.h
│ │ │ ├── celp_filters.h
│ │ │ ├── celp_math.h
│ │ │ ├── cga_data.h
│ │ │ ├── colorspace.h
│ │ │ ├── cookdata.h
│ │ │ ├── dcadata.h
│ │ │ ├── dca.h
│ │ │ ├── dcahuff.h
│ │ │ ├── dirac.h
│ │ │ ├── dnxhddata.h
│ │ │ ├── dnxhdenc.h
│ │ │ ├── dsputil.h
│ │ │ ├── dvdata.h
│ │ │ ├── dv_profile.h
│ │ │ ├── dxva2.h
│ │ │ ├── eac3dec_data.h
│ │ │ ├── elbg.h
│ │ │ ├── eval.h
│ │ │ ├── faandct.h
│ │ │ ├── faanidct.h
│ │ │ ├── faxcompr.h
│ │ │ ├── flacdata.h
│ │ │ ├── flac.h
│ │ │ ├── flv.h
│ │ │ ├── g729data.h
│ │ │ ├── g729.h
│ │ │ ├── get_bits.h
│ │ │ ├── golomb.h
│ │ │ ├── h261data.h
│ │ │ ├── h261.h
│ │ │ ├── h263data.h
│ │ │ ├── h263.h
│ │ │ ├── h263_parser.h
│ │ │ ├── h264data.h
│ │ │ ├── h264.h
│ │ │ ├── h264_mvpred.h
│ │ │ ├── h264_parser.h
│ │ │ ├── h264pred.h
│ │ │ ├── huffman.h
│ │ │ ├── iirfilter.h
│ │ │ ├── imcdata.h
│ │ │ ├── imgconvert.h
│ │ │ ├── indeo2data.h
│ │ │ ├── indeo3data.h
│ │ │ ├── internal.h
│ │ │ ├── intrax8.h
│ │ │ ├── intrax8huf.h
│ │ │ ├── jpeglsdec.h
│ │ │ ├── jpegls.h
│ │ │ ├── lcl.h
│ │ │ ├── libdirac.h
│ │ │ ├── libdirac_libschro.h
│ │ │ ├── libschroedinger.h
│ │ │ ├── libxvid_internal.h
│ │ │ ├── lpc.h
│ │ │ ├── lsp.h
│ │ │ ├── lzw.h
│ │ │ ├── mathops.h
│ │ │ ├── mdct_tablegen.h
│ │ │ ├── mjpegdec.h
│ │ │ ├── mjpegenc.h
│ │ │ ├── mjpeg.h
│ │ │ ├── mlp.h
│ │ │ ├── mlp_parser.h
│ │ │ ├── motionpixels_tablegen.h
│ │ │ ├── mpc7data.h
│ │ │ ├── mpc8data.h
│ │ │ ├── mpc8huff.h
│ │ │ ├── mpcdata.h
│ │ │ ├── mpc.h
│ │ │ ├── mpeg12data.h
│ │ │ ├── mpeg12decdata.h
│ │ │ ├── mpeg12.h
│ │ │ ├── mpeg4audio.h
│ │ │ ├── mpeg4data.h
│ │ │ ├── mpeg4video.h
│ │ │ ├── mpeg4video_parser.h
│ │ │ ├── mpegaudiodata.h
│ │ │ ├── mpegaudiodecheader.h
│ │ │ ├── mpegaudiodectab.h
│ │ │ ├── mpegaudio.h
│ │ │ ├── mpegaudiotab.h
│ │ │ ├── mpegaudio_tablegen.h
│ │ │ ├── mpegvideo_common.h
│ │ │ ├── mpegvideo.h
│ │ │ ├── msmpeg4data.h
│ │ │ ├── msmpeg4.h
│ │ │ ├── msrledec.h
│ │ │ ├── nellymoser.h
│ │ │ ├── old_codec_ids.h
│ │ │ ├── opt.h
│ │ │ ├── parser.h
│ │ │ ├── pixdesc.h
│ │ │ ├── png.h
│ │ │ ├── pnm.h
│ │ │ ├── psymodel.h
│ │ │ ├── put_bits.h
│ │ │ ├── qcelpdata.h
│ │ │ ├── qdm2data.h
│ │ │ ├── ra144.h
│ │ │ ├── ra288.h
│ │ │ ├── rangecoder.h
│ │ │ ├── ratecontrol.h
│ │ │ ├── raw.h
│ │ │ ├── rectangle.h
│ │ │ ├── rle.h
│ │ │ ├── rl.h
│ │ │ ├── roqvideo.h
│ │ │ ├── rtjpeg.h
│ │ │ ├── rv30data.h
│ │ │ ├── rv34data.h
│ │ │ ├── rv34.h
│ │ │ ├── rv34vlc.h
│ │ │ ├── rv40data.h
│ │ │ ├── rv40vlc2.h
│ │ │ ├── s3tc.h
│ │ │ ├── sgi.h
│ │ │ ├── simple_idct.h
│ │ │ ├── sipr16kdata.h
│ │ │ ├── siprdata.h
│ │ │ ├── sipr.h
│ │ │ ├── snow.h
│ │ │ ├── sp5x.h
│ │ │ ├── svq1_cb.h
│ │ │ ├── svq1enc_cb.h
│ │ │ ├── svq1.h
│ │ │ ├── svq1_vlc.h
│ │ │ ├── synth_filter.h
│ │ │ ├── tableprint.h
│ │ │ ├── tiff.h
│ │ │ ├── truemotion1data.h
│ │ │ ├── truespeech_data.h
│ │ │ ├── twinvq_data.h
│ │ │ ├── ulti_cb.h
│ │ │ ├── unary.h
│ │ │ ├── vaapi.h
│ │ │ ├── vaapi_internal.h
│ │ │ ├── vc1acdata.h
│ │ │ ├── vc1data.h
│ │ │ ├── vc1.h
│ │ │ ├── vda.h
│ │ │ ├── vdpau.h
│ │ │ ├── vdpau_internal.h
│ │ │ ├── version.h
│ │ │ ├── vorbis_enc_data.h
│ │ │ ├── vorbis.h
│ │ │ ├── vp3data.h
│ │ │ ├── vp56data.h
│ │ │ ├── vp56.h
│ │ │ ├── vp5data.h
│ │ │ ├── vp6data.h
│ │ │ ├── wmadata.h
│ │ │ ├── wma.h
│ │ │ ├── wmaprodata.h
│ │ │ ├── wmv2.h
│ │ │ ├── xiph.h
│ │ │ ├── xvmc.h
│ │ │ └── xvmc_internal.h
│ │ ├── libavdevice
│ │ │ ├── alsa-audio.h
│ │ │ ├── avdevice.h
│ │ │ ├── dv1394.h
│ │ │ └── version.h
│ │ ├── libavfilter
│ │ │ ├── asrc_abuffer.h
│ │ │ ├── avcodec.h
│ │ │ ├── avfiltergraph.h
│ │ │ ├── avfilter.h
│ │ │ ├── buffersink.h
│ │ │ ├── buffersrc.h
│ │ │ └── version.h
│ │ ├── libavformat
│ │ │ ├── aiff.h
│ │ │ ├── apetag.h
│ │ │ ├── asfcrypt.h
│ │ │ ├── asf.h
│ │ │ ├── audiointerleave.h
│ │ │ ├── avc.h
│ │ │ ├── avformat.h
│ │ │ ├── avi.h
│ │ │ ├── avio.h
│ │ │ ├── avlanguage.h
│ │ │ ├── caf.h
│ │ │ ├── dv.h
│ │ │ ├── ffm.h
│ │ │ ├── flacenc.h
│ │ │ ├── flv.h
│ │ │ ├── gxf.h
│ │ │ ├── id3v1.h
│ │ │ ├── id3v2.h
│ │ │ ├── internal.h
│ │ │ ├── isom.h
│ │ │ ├── matroska.h
│ │ │ ├── metadata.h
│ │ │ ├── mpeg.h
│ │ │ ├── mpegts.h
│ │ │ ├── mxf.h
│ │ │ ├── network.h
│ │ │ ├── nut.h
│ │ │ ├── oggdec.h
│ │ │ ├── os_support.h
│ │ │ ├── qtpalette.h
│ │ │ ├── raw.h
│ │ │ ├── rdt.h
│ │ │ ├── riff.h
│ │ │ ├── rm.h
│ │ │ ├── rtmp.h
│ │ │ ├── rtmppkt.h
│ │ │ ├── rtp_asf.h
│ │ │ ├── rtpdec_amr.h
│ │ │ ├── rtpdec.h
│ │ │ ├── rtpdec_h263.h
│ │ │ ├── rtpenc.h
│ │ │ ├── rtp.h
│ │ │ ├── rtp_h264.h
│ │ │ ├── rtp_vorbis.h
│ │ │ ├── rtspcodes.h
│ │ │ ├── rtsp.h
│ │ │ ├── seek.h
│ │ │ ├── sox.h
│ │ │ ├── swf.h
│ │ │ ├── timefilter.h
│ │ │ ├── version.h
│ │ │ └── voc.h
│ │ ├── libavutil
│ │ │ ├── adler32.h
│ │ │ ├── aes.h
│ │ │ ├── attributes.h
│ │ │ ├── audioconvert.h
│ │ │ ├── audio_fifo.h
│ │ │ ├── avassert.h
│ │ │ ├── avconfig.h
│ │ │ ├── avstring.h
│ │ │ ├── avutil.h
│ │ │ ├── base64.h
│ │ │ ├── blowfish.h
│ │ │ ├── bprint.h
│ │ │ ├── bswap.h
│ │ │ ├── buffer.h
│ │ │ ├── cast5.h
│ │ │ ├── channel_layout.h
│ │ │ ├── common.h
│ │ │ ├── cpu.h
│ │ │ ├── crc_data.h
│ │ │ ├── crc.h
│ │ │ ├── des.h
│ │ │ ├── dict.h
│ │ │ ├── display.h
│ │ │ ├── downmix_info.h
│ │ │ ├── error.h
│ │ │ ├── eval.h
│ │ │ ├── ffversion.h
│ │ │ ├── fifo.h
│ │ │ ├── file.h
│ │ │ ├── float_dsp.h
│ │ │ ├── frame.h
│ │ │ ├── hash.h
│ │ │ ├── hmac.h
│ │ │ ├── imgutils.h
│ │ │ ├── integer.h
│ │ │ ├── internal.h
│ │ │ ├── intfloat.h
│ │ │ ├── intfloat_readwrite.h
│ │ │ ├── intmath.h
│ │ │ ├── intreadwrite.h
│ │ │ ├── lfg.h
│ │ │ ├── libm.h
│ │ │ ├── lls.h
│ │ │ ├── log.h
│ │ │ ├── lzo.h
│ │ │ ├── macros.h
│ │ │ ├── mathematics.h
│ │ │ ├── md5.h
│ │ │ ├── mem.h
│ │ │ ├── motion_vector.h
│ │ │ ├── murmur3.h
│ │ │ ├── old_pix_fmts.h
│ │ │ ├── opt.h
│ │ │ ├── parseutils.h
│ │ │ ├── pca.h
│ │ │ ├── pixdesc.h
│ │ │ ├── pixelutils.h
│ │ │ ├── pixfmt.h
│ │ │ ├── random_seed.h
│ │ │ ├── rational.h
│ │ │ ├── rc4.h
│ │ │ ├── replaygain.h
│ │ │ ├── ripemd.h
│ │ │ ├── samplefmt.h
│ │ │ ├── sha1.h
│ │ │ ├── sha512.h
│ │ │ ├── sha.h
│ │ │ ├── softfloat.h
│ │ │ ├── stereo3d.h
│ │ │ ├── threadmessage.h
│ │ │ ├── timecode.h
│ │ │ ├── time.h
│ │ │ ├── timer.h
│ │ │ ├── timestamp.h
│ │ │ ├── tree.h
│ │ │ ├── version.h
│ │ │ ├── x86_cpu.h
│ │ │ └── xtea.h
│ │ ├── libpostproc
│ │ │ ├── postprocess.h
│ │ │ ├── postprocess_internal.h
│ │ │ └── version.h
│ │ ├── libswresample
│ │ │ ├── swresample.h
│ │ │ └── version.h
│ │ ├── libswscale
│ │ │ ├── rgb2rgb.h
│ │ │ ├── swscale.h
│ │ │ ├── swscale_internal.h
│ │ │ └── version.h
│ │ ├── _mingw.h
│ │ ├── stdint.h
│ │ └── unistd.h
│ ├── lib
│ │ ├── avcodec-56.def
│ │ ├── avcodec.lib
│ │ ├── avdevice-56.def
│ │ ├── avdevice.lib
│ │ ├── avfilter-5.def
│ │ ├── avfilter.lib
│ │ ├── avformat-56.def
│ │ ├── avformat.lib
│ │ ├── avutil-54.def
│ │ ├── avutil.lib
│ │ ├── libavcodec.dll.a
│ │ ├── libavdevice.dll.a
│ │ ├── libavfilter.dll.a
│ │ ├── libavformat.dll.a
│ │ ├── libavutil.dll.a
│ │ ├── libpostproc.dll.a
│ │ ├── libswresample.dll.a
│ │ ├── libswscale.dll.a
│ │ ├── postproc-53.def
│ │ ├── postproc.lib
│ │ ├── static
│ │ │ ├── libavcodec.a
│ │ │ ├── libavdevice.a
│ │ │ ├── libavformat.a
│ │ │ ├── libavutil.a
│ │ │ ├── libgcc.a
│ │ │ ├── libmingwex.a
│ │ │ ├── libqueue.a
│ │ │ ├── libswscale.a
│ │ │ └── n.txt
│ │ ├── swresample-1.def
│ │ ├── swresample.lib
│ │ ├── swscale-3.def
│ │ └── swscale.lib
│ ├── ReadMe.txt
│ ├── shared
│ │ ├── avcodec-56.dll
│ │ ├── avdevice-56.dll
│ │ ├── avfilter-5.dll
│ │ ├── avformat-56.dll
│ │ ├── avutil-54.dll
│ │ ├── postproc-53.dll
│ │ ├── swresample-1.dll
│ │ └── swscale-3.dll
│ ├── stdafx.cpp
│ ├── stdafx.h
│ ├── targetver.h
│ └── va_copy.h
├── ffmpeg-2.4.2.opensdf
├── ffmpeg-2.4.2.sdf
├── ffmpeg-2.4.2.sln
├── ffmpeg-2.4.2.v12.suo
└── ipch
└── ffmpeg-2.4.2-e15314b7
└── ffmpeg-2.4.ipch
17 directories, 429 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论