x-x-p

Results 14 comments of x-x-p

同样也有这个问题。 当视频流正在代理中时, flv可以顺利播放; 当视频流没有在代理中, flv先播放后拉流代理时, flv视频卡住在第一帧画面。

将这个版本中的时间修整理器Stamp重新添加到代码中之后, flv播放顺畅得多了。 [Http-FLV: http-flv直播采用绝对时间戳并支持las](https://github.com/ZLMediaKit/ZLMediaKit/commit/dce6b27f4fd09b1ecd837d7ee888ddf7bed50368)

chrome浏览器还不支持hevc解码, 可以下载开源的[chromium浏览器](https://github.com/StaZhu/enable-chromium-hevc-hardware-decoding/releases)

是否可用 `MP4Muxer`中封装的`track_info`中的https://github.com/ZLMediaKit/ZLMediaKit/blob/c19fa29e75b6f173444ab7ed826ff1acceb0de5f/src/Record/MP4Muxer.h#L71-L75 Stamp时间戳https://github.com/ZLMediaKit/ZLMediaKit/blob/c19fa29e75b6f173444ab7ed826ff1acceb0de5f/src/Common/Stamp.h#L63 ``` int64_t MP4MuxerInterface::getDurationMS() { Stamp *audio = nullptr, *video = nullptr; for(auto &pr : _codec_to_trackid){ switch (getTrackType((CodecId) pr.first)){ case TrackAudio : audio = &pr.second.stamp; break; case TrackVideo...