Adds a Flash based (mp3) audio player to Gallery.
Allows for listening mp3 music items in your Gallery / web-browser.
For expert users: If you want to manipulate the HTML to change the way the player is called, here is a complete list of all parameters:
mp3Url - full url to the mp3 thumbUrl - full url to preview thumb title id3 language: langGenre = "Genre"; langArtist = "Artist"; langAlbum = "Album"; langSong = "Song"; langYear = "Year"; langTrack = "Track"; allowDl - allow download? true/false (shows/hides download button) langDownload - tooltip Download langInfo - tooltip Info
1. open /modules/mp2audio/MP3AudioRender.class and find:
/* Set allowDL=false to omit download button in lower right of player */ $flashVars = 'mp3Url=' . urlencode($src) . '&allowDl=true';
2. change to:
/* Set allowDL=false to omit download button in lower right of player */ $flashVars = 'mp3Url=' . urlencode($src) . '&allowDl=false';