
ffmpeg
文章平均质量分 56
一瓶不满半瓶晃
一瓶子不满,半瓶子晃。工作问题总结目标是提供问题一站式解决方案
展开
-
插件在zynq平台上的交叉编译
一:准备工作项目 版本号 链接操作系统 Ubuntu 16.04 OpenCV 2.4.13 3.2.0 opencv-2.4.13.zipFFmpeg 3.1.4 ffmpeg-3.1.4.tar.bz2x264 20161020 x264-snapshot-20161019-2245-stable.tar.bz2libjpeg 9.0.0 jpegsrc.v9.tar.gzlibpng 1.6.25 ...转载 2021-06-16 10:05:05 · 475 阅读 · 0 评论 -
丢帧后导致再次解码失败,每次都要做好补充结完
https://blog.youkuaiyun.com/leixiaohua1020/article/details/19016109雷神 你就是神一般的存在.每一篇都让我喂给, 给我能量棒, 棒棒棒的我坚持下去.....唯有知识让我如饥似喝.原创 2021-01-20 22:34:22 · 173 阅读 · 0 评论 -
ffplay-videothread解析
在ffplay中,各个线程角色如下:read_thread()线程扮演着图中Demuxer的角色。video_thread()线程扮演着图中Video Decoder的角色。audio_thread()线程扮演着图中Audio Decoder的角色。主线程中的event_loop()函数循环调用refresh_loop_wait_event()则扮演着图中 视频渲染的角色。回调函数sdl_audio_callback扮演图中音频播放的角色。VideoState结构体变量则扮演者各个线程之原创 2020-12-27 17:20:57 · 616 阅读 · 0 评论 -
2020-11-05 ffmpeg 视频合并与拆分
filelist.txtfile 'VID_20181219_214101.mp4'file 'VID_20181220_172414.mp4'命令ffmpeg -f concat -i filelist.txt -c copy rtsp-server-0.mp4注意事项测试中发现,产生文件的后缀,可能对文件格式产生影响。所以需要注意使用正确的后缀。从开始分割600秒视频命令如下:ffmpeg -ss 00:00:00 -i sample.mp4 -c copy -t 600..原创 2020-11-05 09:58:27 · 267 阅读 · 0 评论 -
ffmpeg build for Nekylin mips64el
./configure --prefix=/home/oye/think/ffmpeg4.2.3 --enable-shared --enable-static --extra-cflags=-I/home/oye/think/include --extra-ldflags=-L/home/oye/think/lib --mandir=/usr/share/man --arch=mips64el --optflags='-O3 -g -march=loongson3a -mabi=64' --enable-原创 2020-08-03 13:45:58 · 298 阅读 · 0 评论 -
avfilter_graph_parse_ptr 返回值 -22. 报 no such filter: ‘‘
if ((ret = avfilter_graph_parse_ptr(graph, filtergraph, &inputs, &outputs, NULL)) < 0) goto fail; avfilter_graph_parse_ptr 返回值 -22问题. 报 no such filter: '' 每次调用 ffplay_init时 is-&g...原创 2020-07-13 21:56:35 · 2979 阅读 · 0 评论 -
ffmpeg 加动态时间水印
sprintf(lpCmdLine, "%s -i %s -f lavfi -i testsrc=duration=5:size=800x600:rate=30 -vf drawtext=\"fontfile=C\\\:/Windows/Fonts/arial.ttf:text='%%{pts\\:gmtime\\:%lld\\:%%Y-%%m-%%d\\ %%H\\\\\\:%%M\\\\\\:%%S\\\}':x=50:y=50:fontsize=24:fontcolor=white:shado...原创 2020-07-02 09:07:24 · 1359 阅读 · 0 评论 -
ffmpeg编译
export PKG_CONFIG_PATH=/home/oye/p/lib/pkgconfig:$PKG_CONFIG_PATH有些lib的pkg—config文件放在/usr/locallib/pkgconfig 中....export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH./configure --prefix=/usr/local/ffmpeg423\--enable-shared --enable-stat转载 2020-06-11 17:12:48 · 260 阅读 · 0 评论 -
ffmpeg+duilib 播放器开源项目
SunPlayer是一个视频播放器。核心播放部分是ffplayer(https://github.com/rockcarry/ffplayer),ffplayer是对ffmpeg的一个c封装,详情请转到github查看。UI部分使用的Troy维护的Duilib(https://github.com/qdtroy/DuiLib_Ultimate),还有一个版本UI使用的QT5。播放器实现了常用的功能,如播放,暂停,快进快退打开文件,最大化全屏等等功能。其中Duilib版本菜单部分还未完成。..转载 2020-05-27 06:06:25 · 800 阅读 · 0 评论