PDA

View Full Version : REQ: tool that will sniff through a batch of files and extract raw content


Zhelkus
8th September 2006, 18:56
Basically what the title says:p

I need help looking for a tool that'll search through a batch of files. These files could be containers, renamed extensions, or whatever.

Specifically, I'm looking for MPEG1 Layer2 audio at 192kbps 48kHz.

Any help would be greatly appreciated.:(

Sirber
8th September 2006, 18:58
using mediainfo.dll, you could open every file and look for what you need. Shouldn't be hard to make.

about extraction, it's harder :)

Zhelkus
8th September 2006, 19:25
using mediainfo.dll
How so? Could you explain, please?

about extraction, it's harder
I'm willing to go the extra mile:p Do you have knowledge on how to do it?

Sirber
8th September 2006, 19:59
foerach files
{
mediainfo.Open(file)
// ask for your stuff
if (found)
{
extract
}
}

can be done in VB and Delphi easily.

I'm willing to go the extra mile Do you have knowledge on how to do it?
I have the knowledge but not the time to extract from unknown sources :)
too much stuff to look for.

Zhelkus
8th September 2006, 20:12
Thanks a lot, I'll give it a try.