ZeroEffect
Well-known member
If you didnt know wav file can store data about the fine n a "cart chunk header" I am trying to find a way to read this information. I have found a code example in C# but I have no idea on C# this is the code
I think these are variables and byte sizes couuld someone give me a hand in doing the conversion to vb.net. Im trying to build an application that will rename file based on the info in the cart chunk header. Any help would be very helpfull.
Thansk In advance
ZeroEffect
Code:
typedef struct cartchunk_tag
{
DWORD ckID;
DWORD ckSize;
BYTE ckData[ckSize];
}
typedef struct cart_exetension_tag
{
CHAR Version[4];
CHAR Title[64];
CHAR Artist[64];
CHAR CutID[64];
CHAR ClilentID[64];
CHAR Category[64];
CHAR Classification[64];
CHAR OutCue[64];
CHAR StartDate[10];
CHAR StartTime[8];
CHAR EndDate[10];
CHAR EndTime[8];
CHAR ProducerAppID[64];
CHAR ProducerAppVersion[64];
CHAR UserDef[64];
DWORD dwLevelRefference
CART_TIMER PostTimer[8];
CHAR Reserved[276];
CHAR URL[1024];
CHAR TagText[];
} CART_EXTENSION;
typedef struct cart_timer_tag
{
FOURCC dwUsage;
DWORD dwValue;
} CART_TIMER
I think these are variables and byte sizes couuld someone give me a hand in doing the conversion to vb.net. Im trying to build an application that will rename file based on the info in the cart chunk header. Any help would be very helpfull.
Thansk In advance
ZeroEffect