【发布时间】:2016-12-20 07:49:44
【问题描述】:
所以我正在使用 TagLib 尝试提取 ChunkOffset 值。
我已经用代码做到了这一点。而我这样做的方式绝对是错误的。
TagLib.File f = new TagLib.Mpeg4.File("C:\\file.mp4");
//Code from here
TagLib.Mpeg4.BoxHeader Box = new TagLib.Mpeg4.BoxHeader();
TagLib.Mpeg4.IsoHandlerBox Handle = new TagLib.Mpeg4.IsoHandlerBox(Box, f, *what goes here??* );
//To here is quite obviously wrong
TagLib.Mpeg4.IsoChunkOffsetBox offsetbox = new TagLib.Mpeg4.IsoChunkOffsetBox(Box, f, Handle);
uint[] array = offsetbox.Offsets;
【问题讨论】:
标签: c# mp4 taglib taglib-sharp