Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Freedbwise type of custom application... (Read 3055 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Freedbwise type of custom application...

We are looking at a custom system for tagging, cataloguing, searching, etc. audio files of French cultural radio broadcast sessions... in a way similar to how things are organized around freedb for standard CD music numbers management purposes.

Is it therefore possible to set up a specific freedb-like type of database that would be customized to radio specific information and then have foobar2000 to automatically extract/feed tag information from this database?

In another word, can foobar2000 be linked to a customized database that is not freedb?

Thank you so much for your help!

radionysos@yahoo.fr

Freedbwise type of custom application...

Reply #1
Quote
In another word, can foobar2000 be linked to a customized database that is not freedb?[a href="index.php?act=findpost&pid=228180"][{POST_SNAPBACK}][/a]

Yes, this is possible if one writes a plugin to get the infos from this specific database (this is also the way, the freedb support is implemented).

Best regards,
~ Florian

Freedbwise type of custom application...

Reply #2
Thanks Florian!

additionnal questions though...

1) What developing tool should be used for developing such a utility? Are they foolbar2000 built in?

2) How much expertise is needed? Do you need to be a confirmed developer or can anyone pretty good computer litterate can survive it?

3) What db should we be using for the central db? Would we need to entirely develop such a db from scratch (ie. SQL) or can we start from a freedb model and simply customize it to our own needs?

Kind Regards,

radionysos

Freedbwise type of custom application...

Reply #3
Quote
1) What developing tool should be used for developing such a utility? Are they foolbar2000 built in?

2) How much expertise is needed? Do you need to be a confirmed developer or can anyone pretty good computer litterate can survive it?

All foobar2000 plugins written in C/C++ and are based on foobar2000's great SDK (which is avaliable at the main page). You can use MSFT's Visual Studio as development tool.

foosion wrote a small plugin development tutorial and there are tons of plugins with source code available.


Quote
3) What db should we be using for the central db? Would we need to entirely develop such a db from scratch (ie. SQL) or can we start from a freedb model and simply customize it to our own needs?

freedb uses files as database and I think that the development effort with using such an approach is much bigger, than using a already existing database (like the public domain database sqlite) which provides SQL for querying the data.

Best regards,
~ Florian

Freedbwise type of custom application...

Reply #4
thanks for your answer Florian!

This is perfect answer and the quickest ever one I've seen so far!!