- ffmpeg/ffprobe查看音频视频文件信息并输出为json格式,这是一个很实用的功能,特别是外部程序调用并处理音频视频信息时
ffprobe -v quiet -print_format json -show_format -show_streams #{source}
- ffmpeg pcm -> aac
ffmpeg -f s16le -ar 44.1k -ac 1 -i test.pcm test.flv
- 转发 rtmp流
ffmpeg -i "rtmp://source" -c copy -f flv "rtmp://detisnation"
- ffmpeg 使用滤镜
ffmpeg -i "rtmp://source" -acodec copy -vcodec libx264 -vf "transpose=1" -f flv "rtmp://detisnation"
- ffmpeg 提取mp4中的h264
ffmpeg -i test.mp4 -codec copy -bsf: h264_mp4toannexb -f h264 test.h264
- ffmpeg rtmp->udp
ffmpeg -i "rtmp" -an -f h264 udp://127.0.0.1:6666