FFMpeg常用命令

0、参数说明

${in} 为输入流地址或输入文件地址,${hls_time}每片时长,${hls_list_size}切片数,${out}输出流或输出文件,名称为xxx.m3u8

1、视频流转HLS直播

ffmpeg -i ${in} -c:v copy  -c:a copy -f hls -hls_time ${hls_time} -hls_list_size ${hls_list_size} -hls_flags delete_segments ${out}

2、视频流转m3u8点播

ffmpeg -i ${in} -c:v copy  -c:a copy -f hls -hls_time ${hls_time} -hls_list_size 0 ${out}

3、视频流转HLS直播并存储录像文件

ffmpeg -i ${in} -c:v copy  -c:a copy -f hls -hls_time ${hls_time} -hls_list_size ${hls_list_size} ${out}

4、视频拼接

ffmpeg -f concat -safe 0 -i ${in} -c copy ${out}

说明:此处输入可为记录ts文件路径的txt文件

5、视音频转码为H264/AAC

ffmpeg -i ${in} -vcodec h264 -acodec aac ${out}

6、视频流转封装

ffmpeg -i ${in} -vcodec copy -acodec copy ${out}

例如,in为xxx.rmvb,out为xxx.mp4

7、视音频不转码直接转HLS直播

ffmpeg -i ${in} -c:v copy -c:a copy -f hls -hls_time ${hls_time} -hls_list_size 0 -hls_playlist_type vod ${out}

8、视音频转码为H264/AAC封装的HLS直播

ffmpeg -i ${in} -c:v libx264 -c:a aac -f hls -hls_time ${hls_time} -hls_list_size 0 -hls_playlist_type vod ${out}"

你可能感兴趣的:(流媒体)