You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Show Image when mp3 plays with playlist.js Created Jun 3, 2009

This thread is solved

Views: 3162     Replies: 3     Last reply Oct 11, 2009  
You must login first before you can use this feature

towerofbabel
financetrails.com

Posts: 14

Registered:
Apr 11, 2009

Show Image when mp3 plays with playlist.js

Posted: Jun 3, 2009

I am using playlist.js and the audio plugin to create HTML playlists for mp3s.

Actually, some pages have mp3 playlists, some have video playlists.

On the pages with mp3 only playlists, I still want to use the full size player, but show an image in the place the video would normally be.

The example documentation shows how to do this for playlists that DON't require playlist.js - how can I do this using playlist.js???

thanks.

sly001

Posts: 4

Registered:
Jul 10, 2009

» Show Image when mp3 plays with playlist.js

Posted: Jul 12, 2009

Reply to: Show Image when mp3 plays with playlist.js, from towerofbabel
Where is the documentation? I need to do exactly that - images for an MP3-only playlist defined in the HTML.

towerofbabel
financetrails.com

Posts: 14

Registered:
Apr 11, 2009

» » Show Image when mp3 plays with playlist.js

Posted: Jul 13, 2009

Reply to: » Show Image when mp3 plays with playlist.js, from sly001
I have been waiting on some type of answer for sometime now, as you see. I'd really like to achieve this functionality, but I can't find any way to do it from the documentation. I'd love a developer to help on this one - even to say it is not possible at the moment.

-----
My Website: Finance Trails

salubrium

Posts: 2

Registered:
Oct 1, 2009

» » » Show Image when mp3 plays with playlist.js

Posted: Oct 11, 2009

Reply to: » » Show Image when mp3 plays with playlist.js, from towerofbabel
You mean like this?


                playlist: [
                        {      url: 'a_movie.mov',
                                title: 'First Movie'
                        },
                        {       url: '/image_for_mp3.jpg',
                                 title: 'Title for the MP3 below', duration: 0
                        },
                        {       url: 'mp3_to_be_played.mp3',
                                title: ''  
                        },
                        {       url: 'anothermp3.mp3',
                                title: 'Still Displays Image'
                        }
                ],