随笔分类 - FFMPEG
视频、音频流处理
摘要:ffmpeg默认推流方式采用UDP方式,若需要使用TCP协议,则需要修改。 1、使用命令时: ffmpeg 跟参数 -rtsp_transport tcp 2、编码时 AVFormatContext *ofmt_ctx; AVFormatContext *ofmt_ctx; AVDictionary
阅读全文
摘要:ffmpeg中,使用libavformt.so.57时,查找不到。 解决方案: 修改ld.so.conf文件,添加路径。 sudo gedit /etc/ld.so.conf 在文件末尾添加路径 /usr/local/ffmpeg/lib 然后执行命令 sudo ldconfig
阅读全文
摘要:解决方案在github https://github.com/FFmpeg/FFmpeg/commit/c51c08e0e70c186971385bdbb225f69edd4e3375 问题简要描述为: 当get_ue_golomb()函数无法解析大于8190bit的数据,当遇到大于8190bit的
阅读全文
摘要:使用命令 ffmpeg -i hbg.flv -c copy hbg.ts 时遇到如下错误: ffmpeg version 2.8.15-0ubuntu0.16.04.1 Copyright (c) 2000-2018 the FFmpeg developers built with gcc 5.4
阅读全文