We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func Mp4Mux(srcFile, dstFile string) { demuxer, err := avutil.Open(srcFile) if err != nil { log.Fatalln(" srcFile:", srcFile, "error", err) } defer demuxer.Close() muxer, _ := avutil.Create(dstFile) defer muxer.Close() // CopyFile(muxer, demuxer) avutil.CopyFile(muxer, demuxer) }
this is ok for mp4 file , but not ok for for xxx.ts input file. output file can not be played
The text was updated successfully, but these errors were encountered:
this will happen when there are 2 I frame in ts each I frame in different ts packet seems not work well in multi-slice mode
Sorry, something went wrong.
No branches or pull requests
this is ok for mp4 file , but not ok for for xxx.ts input file.
output file can not be played
The text was updated successfully, but these errors were encountered: