来自视频文件的无限流(循环)

Infinite stream from a video file (in a loop)

有什么方法可以从视频文件(例如 mp4、avi 等)创建无限 h264 流。我想使用 ffmpeg 将 avi 文件转码为 h264 但没有 loop 输出选项。

不,你不能。 ffmpeg 中没有这样的命令来循环播放视频。您只能对图像使用 -loop。如果您有兴趣,可以使用 concat demuxer。创建播放列表文件,例如playlist.txt

里面playlist.txt添加视频位置

file '/path/to/video/video.mp4'
file '/path/to/video/video.mp4'
file '/path/to/video/video.mp4'
file '/path/to/video/video.mp4'
file '/path/to/video/video.mp4'

运行 ffmpeg

ffmpeg -f concat -i playlist.txt -c copy output.mp4

here

您应该能够在 输入 (-i):

之前使用 -stream_loop -1 标志
ffmpeg -threads 2 -re -fflags +genpts -stream_loop -1 -i ./test.mp4 -c copy ./test.m3u8

-fflags +genpts会重新生成pts时间戳,这样才能流畅的循环,否则循环的时候时间顺序会不正确

如果您想通过循环播放单个视频文件来进行直播,那么您可以将其拆分为 .ts 文件,然后使用 php 脚本模拟 .m3u8 文件,这将 return 不同.ts 基于当前时间。您可以尝试类似的操作:

<?php
// lets assume that we have stream splitted to parts named testXXXXX.ts
// and all parts have 2.4 seconds and we want to play in loop part
// from test0.ts to test29.ts forever in a live stream
header('Content-Type: application/x-mpegURL');
$time = intval(time() / 2.40000);
$s1 = ($time + 1) % 30;
$s2 = ($time + 2) % 30;
$s3 = ($time + 3) % 30;
$s4 = ($time + 4) % 30;
?>
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:2
#EXT-X-MEDIA-SEQUENCE:<?php echo "$time\n"; ?>
#EXTINF:2.40000,
test<?php echo $s1; ?>.ts
<?php if ($s2 < $s1) echo "#EXT-X-DISCONTINUITY\n"; ?>
#EXTINF:2.40000,
test<?php echo $s2; ?>.ts
<?php if ($s3 < $s2) echo "#EXT-X-DISCONTINUITY\n"; ?>
#EXTINF:2.40000,
test<?php echo $s3; ?>.ts
<?php if ($s4 < $s3) echo "#EXT-X-DISCONTINUITY\n"; ?>
#EXTINF:2.40000,
test<?php echo $s4; ?>.ts