av/revid/H264ParseTesting.go

12 lines
186 B
Go

package main
import "../packets"
const (
fileName = "out.h264"
)
func main(){
converter := packets.NewRtpToTsConverter()
packets.ParseRawH264(fileName,&converter.NalInputChan)
}