在浏览器中查看MPEG-TS流

时间:2018-02-07 11:23:10

标签: ffmpeg

我想创建一个带有视频播放器的网页,可以播放H264 mpeg-ts直播。我找不到任何可以做到这一点的网络播放器。

我读到JWPlayer能够做到这一点,但仅限付费版本。

该流可以在VLC和任何其他玩家中播放。

我该怎么办?我尝试使用ffmpeg将流转换为更有用的东西,但没有成功。

ffmpeg -i "http://localhost:9002/tv.ts" -vcodec libx264 -r 20 -s 320x240 -threads 2 -vprofile baseline -vpre zoom -strict experimental -acodec aac -ab 96000 -ar 48000 -ac 1 -f rtsp rtsp://192.168.0.28:1935/live/_definst_/c3

这就是我得到的:

    Last message repeated 1 times
[h264 @ 0xbb9500] decode_slice_header error
[h264 @ 0xbb9500] no frame!
[mpegts @ 0xbaa6e0] decoding for stream 1 failed
[mpegts @ 0xbaa6e0] Could not find codec parameters for stream 1 (Video: h264 ([27][0][0][0] / 0x001B), none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, mpegts, from 'http://192.168.0.28:9002/tv.ts':
  Duration: N/A, start: 30764.854700, bitrate: N/A
  Program 1 
    Stream #0:0[0x44](???): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 128 kb/s
    Stream #0:1[0x45]: Video: h264 ([27][0][0][0] / 0x001B), none, 25 fps, 25 tbr, 90k tbn, 180k tbc
File for preset 'zoom' not found

1 个答案:

答案 0 :(得分:0)

您可以尝试在您的网站中加入hls.js播放器。此播放器将您的TS流转换为MP4片段,以便在任何浏览器中播放。它是免费且易于集成的。

演示页面https://video-dev.github.io/hls.js/demo/

Github页面https://github.com/video-dev/hls.js/