this is how you make a real player playlist... but somehow i cannot make it work properly...i'm able to make the playlist, & it's playing the playlist, but only the first song... once i'm thru' with the details, i'll post... till then, you can try along with me...
For local playback of clips residing on the user's computer, start the URL with file:// and list clips in their locations relative to the Ram file. For example, the following specifies a clip that resides one level below the Ram file in the media directory: file://media/video1.rm To deliver a few clips (but not SMIL files) in sequence, list the URLs in their playback order:
file://media/video1.rm
file://media/video2.rm
file://media/video3.rm
Someone, can you please tell me why doesn' it work?
Code:
#!/bin/bash
i=`pwd | sed s/' '/%20/g`
for j in `ls | grep '.rm$' | sed s/' '/%20/g`;
do
echo file://localhost/ >> ./playlist.ram
done
What i'm trying to do is make a playlist.ram file in the root of the mmc. The rm files are also in the root of the mmc.