OK! I'm finally done integrating everything I was hoping to for this release of the playlist.module:

1) iTunes podcast/xspf/m3u/pls feeds generated on the fly, with full metadata support
2) album artwork can now be integrated (through URL)
3) xspf flash players for each feed, including popup players for each
4) audio browser, similar to iTunes, used to search audio tags and find the audio to add to playlists
5) upload new audio files to playlists on the fly with an inline uploader
6) listening station: an xspf flash player block that has a dropdown select to listen to different playlists on the site
7) Cut n' paste HTML and javascript includes for integrating the flash player on other sites
8) lots of customization options

Don't like the name audio playlist? Change it to audio album, podcast, or whatever. Don't want the block to have a title? There are lots of settings options (with more to come) so you can customize this module to work anyway you want.

This module is in beta. It needs lots of testing and grooming of the code. Unfortunately I can only afford to work on this in my spare time so I could really use a lot of help with beta testing!

Check out the Demo Site if you want a rough idea of functionality. You can upload audio files up to 1 meg in size and create playlists. Even better for testing purposes would be if you could download the package and try it out. I'm especially unsure about installation problems and with upgrading.

Thanks!
zirafa

Comments

I logged in under demo. The

I logged in under demo. The "add to" function doesn't seem to work: http://playlist-demo.drupalart.org/

I was however able to add songs to the playlist in the "manage playlist" tab.

Thanks.

Fixed it.

Fixed on the demo site, 4.7 and HEAD. It was a permissions problem.

I'm getting: Fatal error:

I'm getting:

Fatal error: Call to undefined function: playlist_get_parents() in /var/www/drupal/modules/playlist/audio_playlist/audio_playlist.module on line 213

For pretty much anything I click, e.g. [edit] in the "browse" page. I've had the same error happen on various lines in audio_playlist.module...

Sounds like you didn't turn

Sounds like you didn't turn on the playlist.module. You need to turn on the playlist.module (the API) and also the audio_playlist.module. Be aware that both have their own access control permissions too. If you run into anything else, please file a bug report.

The audio_playlist.module is dependent on the playlist.module as well as the audio_playlist.module.

Thanks. I actually caught

Thanks. I actually caught that myself yesterday when I upgrade to the 4.7 release (vs. HEAD).

Great module, good work man!

I dont think its installing

I dont think its installing for me... I keep getting a mysql database error and I enabled both the modules... its not create the database entries.

* user warning: Table 'clubhavo_drupal.audio_metadata' doesn't exist query: SELECT COUNT(*) FROM node n INNER JOIN audio_metadata a ON n.vid = a.vid INNER JOIN audio af ON n.vid = af.vid WHERE n.status = 1 in /home/clubhavo/public_html/includes/database.mysql.inc on line 120.
* user warning: Table 'clubhavo_drupal.audio_metadata' doesn't exist query: SELECT DISTINCT n.nid, a.vid FROM node n INNER JOIN audio_metadata a ON n.vid = a.vid INNER JOIN audio af ON n.vid = af.vid WHERE n.status = 1 ORDER BY n.created DESC LIMIT 0, 20 in /home/clubhavo/public_html/includes/database.mysql.inc on line 120.

Robert

help me please!!

Hello , I'm French and I don't speak english very well excuse me.

I have a big problem. Please help me.

I installed playlist module but he doesn't work with flexinode file mp3(AirAudio)

My site is here http://213.186.62.141/Airmusic ,and we do not succeed infinding a solution.

Can you help us?

Hoping for your answer...

Hi, the playlist module does

Hi, the playlist module does not currently support flexinode file mp3s, only mp3s created using the audio.module. For Drupal 4.7 only at the moment.

In the future, please file a

In the future, please file a bug report or search for existing bug reports using drupal's issue tracker. You need to install the audio.module, which will create the audio_metadata table that the audio_playlist module relies on.

Thanks a lot You know when

Thanks a lot

You know when we can use flexinode files mp3 with playlist module on the 4.7?
It's a big probleme for my site.

Otherwise , playlist module works correctly , congratulation for this job..

I don't believe flexinode

I don't believe flexinode files mp3 will be supported with the 4.7 version of this module. You can use the audio_import module to import existing uploaded files to audio nodes, however.

Farsheed

File Upload options

Is there a way to upload a file that is larger than 2MB?

Most of my podcasts will be between 10MB and 15MB but the upload file button states that PHP has an upload limit of 2MB.

What if I FTP the file to my server, is there a way to tell the module where the file is?

Thanks . . . Scott

Audio Playlist META Data error messages, pt. x ...

I keep getting variations on this type of error message (and yes, the modules have been installed, and installed in the right way, and activated:)

user warning: Table 'meetuonc_maindrpl.audio_playlist_metadata' doesn't exist query: SELECT * FROM audio_playlist_metadata WHERE pid = 82 in /home/meetuonc/public_html/main/includes/database.mysql.inc on line 120.
user warning: Table 'meetuonc_maindrpl.audio_playlist_metadata' doesn't exist query: SELECT * FROM audio_playlist_metadata WHERE pid = 83 in /home/meetuonc/public_html/main/includes/database.mysql.inc on line 120.

Can someone please point to a thread that addresses this ... or simply tell me what's up, and what I should do? Thanks!

Hi, the errors say that the

Hi, the errors say that the audio_playlist_metadata database table was not created. You will have to manually run the database script. A related thread: http://drupal.org/node/71145

You can use the audio_import

You can use the audio_import module to create audio content from files that already exist on your server. Or,, you will have to look to see how you can modify your PHP settings through php.ini or .htaccess.

Awesome Module!

Just curious ... is there a way to incorporate video files within the playlist, as well? I would like to incorporate video for feeds going into iTunes (for video enabled iPods), but I can't tell if this is supported? Thank you for a great module!

How to enable 'shuffle' in XSPF block?

Firstly, this is a great module and I want to thank everyone for their hard work... I've spent a bit of time modifying some of the code, but I can't seem to get shuffle = "true"; to work...

I've tried editing the xspf_player_slim.as file but to no avail... should I try editing the module file? Does anyone know where the variables get passed from?

I really want to enable the block but it's pretty hard when it starts the same song every time you click a link... any suggestions would be greatly appreciated... Thanks!

I was thinking of adding

I was thinking of adding something like this to the audio_playlist.module & xspf_player_slim.as but I'm sure I know enough to fully implement it:

/**
* Implementation of hook_block().
*/
function audio_playlist_block

$form['xspf_block']['shuffle'] = array(
'#type' => 'checkbox',
'#title' => t('Shuffle'),
'#description' => t('Checking this box will tell the XSPF player to shuffle the tracks.'),
'#default_value' => $xspf_settings['shuffle']
);

$xspf_settings = variable_get('xspf_block_settings', array('style' => 'slim', 'autoplay' => FALSE, 'shuffle' => TRUE, 'width' => '200', 'title' => t('Listening Station')));

and then:

/**
* Fetch all audio playlists and create a select dropdown for choosing which playlist to listen to. Used in the XSPF block.
* TODO: restrict to only a person's playlists/albums....?
*/
function audio_playlist_chooser() {

$shuffle = $xspf_settings['shuffle'] ? array('shuffle' => TRUE) : array();

but I don't know what to add to xspf_player_slim.as:

//shuffle tracks automatically if parameter shuffle is present
if(shuffle){
shuffle = "true";
}

I know I'm going to screw it up somewhere (like adding an extra table in the database) so I'm hoping someone might have a better solution or at least a good suggestion... Thanks again!

Very fine modul

... but where can i find the HTML-Code to display the Playlists on other Sites? I think i saw that, but in can't find i anywhere again ... might be i'm blinded?

:(

Thnx!

playlist for drupal 5.0

Hi ,

I 've got drupal site in drupal 4.7 http://www.airmusic.eu
Playlists , audio module are very important.

Can I update with drupal 5 or not?

Thanks a lot y sorry for my bad english

Drupal 5

Any news for an update to be Drupal 5 friendly? We would really like to have this module in order to have drupal 5 based podcasting ;)

Anyone????

Its true - we really need this functionality in d5!!!!

q./

playlist modul for drupal 5.x

i would like to use this module in drupal 5.x, do you has anybody any idea how i can import this module?
it is a very very good module..

how do I access the feed for itunes podcasting?

I want to be able to have people susbscribe using the website. How do I find the feed so that I can provide them with a localtion? The subscribe does not seem to work into i-tunes. Thanks

nobody click here