3
그래서 TagLib에서 ChunkOffset 값을 추출하려고합니다.C# - TagLib ISO 청크 오프셋 값 가져 오기
나는이 코드를 가지고 있습니다. 그리고 내가하고있는 방식은 틀 렸습니다.
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;