ffprobe -v quiet -print_format json -show_format -show_streams pianpian.mp4 这里-v代表日志级别,可以使用debug用来分析某些异常; 上面的命令会以json格式输出format和stream两项的信息. 转码再生成m3u8 先转为ts格式: ffmpeg -y -i video.mp4 -c:v copy -c:a copy -vbsf h264_mp4toannexb output.ts...