2016-12-20 15 views
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; 

답변

0

이 작업을 수행하기 위해 BmffViewer 편집을 시도했지만 효과가있었습니다. TagLib과 함께 행운을 빌어 요.