将视频转换为hls时出现以下错误
Cannot use rename on non file protocol, this may lead to races and temporary partial files
据我所知,它不会引起任何问题,但是我想知道我在做什么错。
这是我用来转换为HLS的命令:
ffmpeg -i "C:\Video\my_video.mp4" -codec: copy -start_number 0 -muxdelay 0 -hls_time 4 -hls_list_size 0 -f hls "C:\Video\hls\my_video"
我没有进行任何重新编码或重命名。
答案 0 :(得分:0)
我发现消息仅从该工具记录。
请尝试:
ffmpeg -i input.mp4 -profile:v baseline -level 3.0 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls output.m3u8