文件名称:go-mp4:转到用于读取和写入MP4文件的库
文件大小:300KB
文件格式:ZIP
更新时间:2024-06-03 10:24:27
go golang mp4 mp4box fmp4
go-mp4 go-mp4是用于读写MP4的Go库。 与您的Go应用程序集成 读 您可以按以下方式解析MP4文件: // expand all boxes _ , err := mp4 . ReadBoxStructure ( file , func ( h * mp4. ReadHandle ) ( interface {}, error ) { fmt . Println ( "depth" , len ( h . Path )) // Box Type (e.g. "mdhd", "tfdt", "mdat") fmt . Println ( "type" , h . BoxInfo . Type . String ()) // Box Size fmt . Println ( "size" , h . BoxInfo . Size ) if h . BoxInfo