gen_announce v0.3.1.69 released
Due to some requests I have added some new features to gen_announce..

The format string has now changed from the generic %s which was either “artist – title” or just the title if no tag existed
You can now insert variables of the form %var% where the variable is an ID3 meta data variable..
Here’s a basic list of the variables from ID3v1.1:
- album
- artist
- title
- year
- track
- comment
- genre
So you’ll need to at least replace %s in the configuration with %artist% – %title% if you wanted to maintain the output which previous versions gave
If the variable isn’t recognized or if that meta data doesn’t exist in the ID3 tags (or equivalent tag) of the song, then the output will be null where that variable would’ve been
Download here: gen_announce_v0_3_1_69.exe
Categories: Projects
Trying to insert data into mysqldb. Only thing the plugin generates is “mysql invalid syntax” message.
Current syntax as follows:
USE databse_name;
INSERT INTO info_song (artist,title,album,year,genre,comment,bitrate,length)
VALUES (%artist%,%title%,%album%,%year%,%genre%,%comment%,%bitrate%,%length%);
Added and removed quotes, double quotes, split up into several brackets….no luck..