摘要: 先安装 dshow 软件 Screen Capturer Recorder项目地址:https://sourceforge.net/projects/screencapturer/files/ 然后查看可用设备名字:ffmpeg -list_devices true -f dshow -i dumm 阅读全文
posted @ 2020-08-10 19:59 Vzf 阅读(4254) 评论(1) 推荐(1)
摘要: 转封装 保持编码格式:ffmpeg -i test.mp4 -vcodec copy -acodec copy test_copy.tsffmpeg -i test.mp4 -codec copy test_copy2.ts 改变编码格式:ffmpeg -i test.mp4 -vcodec lib 阅读全文
posted @ 2020-08-10 19:43 Vzf 阅读(2137) 评论(0) 推荐(0)
摘要: 提取音视频数据 保留封装格式ffmpeg -i test.mp4 -acodec copy -vn audio. mp4ffmpeg -i test.mp4 -vcodec copy -an video.mp4 提取视频 保留编码格式:ffmpeg -i test.mp4 -vcodec copy 阅读全文
posted @ 2020-08-10 19:20 Vzf 阅读(647) 评论(0) 推荐(0)