deepch / vdk

A set of libraries for building streaming services. RTSP RTMP MP4 WS TS DASH WEBRTC MP4f

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MP4 muxer.go failed with hevc codec

tubzby opened this issue · comments

Thanks for this project!

There's a minor error in format/mp4/muxer.go line 124:

		codec := self.CodecData.(h264parser.CodecData)

Should be:

		codec := self.CodecData.(h265parser.CodecData)

thx you