0%

视频转m3u8流

1
2
3
4
5
-- 视频整体转码ts
ffmpeg -y -i input.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb output.ts

-- ts 文件切片
ffmpeg -i input.mp4 -c:v libx264 -c:a aac -strict -2 -f hls -hls_time 2 -hls_list_size 0 index.m3u8