I've been using the JME playlist plugin successfully in the scenario where I load one list and interact with that list only.
However, I've had to update my app to load multiple lists and switch between them. Unfortunately, I can't get the new playlist to load - the original keeps playing. The behavior I'm going for is analogous to what happens when you call $('audio').loadSrc(new_playlist) - where the old playlist stops playing and the new playlist starts playing from the beginning.
I'm trying to use the array method, $('audio').playlist(pl_array), as that's easiest for processing. I've included a test example here so you can see the exact code I'm using:
When you click on "tomorrow" or "later this week" it should be loading a new list.
Any ideas as to why the new playlist won't load?
Two related questions:
* ('audio').loadNextPlaylistItem() also does not appear to be working in this example. Any obvious errors in my approach? (main custom JS is here: http://hearnow.me/test/test.js )
* How do I set a new playlist to autoplay the next song in line when using the "playlist array" approach vs. the ul/li playlist approach?
I'm loving the JME audio player, but I can't get it to play m4a files.
Specifically, I'm trying to play itunes affiliate links, and apple states: "The iTunes Store encodes the files for playback only by iTunes, QuickTime, or iTunes and QuickTime plugins."
...so I guess I'm really wondering if anything in the JME framework can incorporate a quicktime plugin for playback.