C
ChJK
Unregistered / Unconfirmed
GUEST, unregistred user!
mp4v2.dll是用来得到和设置mp4文件的动态库文件,由于小弟能力有限不知道具体使用方法
,故请大家帮忙研究!如果有知道怎么得到mp4信息(如作者,标题等)的就可以不用这么麻烦了,谢谢大家
mp4v2.dll源码的下载地址
http://www.builderadius.com/ephpod/mp4v2dll.zip
这是部分代码
typedef void* MP4FileHandle;
typedef u_int64_t MP4Duration;
以上定义在mp4.h
extern "C"
MP4FileHandle MP4Read(const char* fileName, u_int32_t verbosity)
extern "C"
MP4Duration MP4GetDuration(MP4FileHandle hFile)
以上定义在mp4.c
这是我用delphi写的调用代码
function MP4Read(fileName:string;verbosity:integer)ointer;external 'mp4v2.dll';
function MP4GetDuration(hFile:MP4FileHandle):integer;external 'mp4v2.dll';
,故请大家帮忙研究!如果有知道怎么得到mp4信息(如作者,标题等)的就可以不用这么麻烦了,谢谢大家
mp4v2.dll源码的下载地址
http://www.builderadius.com/ephpod/mp4v2dll.zip
这是部分代码
typedef void* MP4FileHandle;
typedef u_int64_t MP4Duration;
以上定义在mp4.h
extern "C"
MP4FileHandle MP4Read(const char* fileName, u_int32_t verbosity)
extern "C"
MP4Duration MP4GetDuration(MP4FileHandle hFile)
以上定义在mp4.c
这是我用delphi写的调用代码
function MP4Read(fileName:string;verbosity:integer)ointer;external 'mp4v2.dll';
function MP4GetDuration(hFile:MP4FileHandle):integer;external 'mp4v2.dll';