そのため、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;