如何正确编译 dashcast 和 ffmpeg

来源:互联网 发布:c语言棱形 编辑:程序博客网 时间:2024/06/04 18:26

如何正确编译 dashcast with ffmpeg:
url:http://gpac.wp.mines-telecom.fr/dashcast/

为了支持部分的x264 和 aac 编码,需要编译x264库和 avresample库等

sudo ./configure --enable-libx264 --enable-gpl --enable-shared --enable-avresample

use --enable-libx264 to enable the x264

use --enable-gpl to enable the x264

use --enable-shared to enable the ffmpeg installation correctly for libavformat/libavformat.lib

                                                                                                         libavcodec/libavcodec.lib         libavfilter/libavfilter.lib    libavresample/libavresample.lib

use --enable-avresample to solve the acc resample issue in dashcast.  related page :

0 0