尝试使用支持H263和H264代码的build H323Plus(最新版本)。
从config.log发现错误:
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /tmp/ccLlS6ND.o: in function `main':
conftest.c:(.text.startup+0x7): undefined reference to `h263p_encoder'
collect2: error: ld returned 1 exit status
似乎在avcodec中找不到h263p_encoder。
带参数的FFmpeg(最新4版)构建:
--enable-libx264 --enable-libxvid --enable-libx265 --enable-gpl --disable-x86asm --enable-shared --prefix=/usr --libdir=/usr/lib64
这是我在FFmpeg上看到的编解码器。如果执行命令ffmpeg --codecs:
DEV.L. h263 H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2 (decoders: h263 h263_v4l2m2m ) (encoders: h263 h263_v4l2m2m )
D.V.L. h263i Intel H.263
DEV.L. h263p H.263+ / H.263-1998 / H.263 version 2
DEV.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_v4l2m2m h264_cuvid ) (encoders: libx264 libx264rgb h264_nvenc h264_v4l2m2m nvenc nvenc_h264 )
有什么可以帮忙的吗?我尝试使用Ubuntu 18.04和Opensuse 15.0构建项目
发布于 2019-02-09 04:22:07
当前的FFmpeg版本不支持H323Plus插件的编译。你需要FFmpeg (0.6.x)和x264的2014版本。
https://stackoverflow.com/questions/54421926
复制相似问题