p.s: I tested this on my sl-C3000 but i think once you install the mplayer it runs on any Z.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104279\"][{POST_SNAPBACK}][/a][/div]
It installs on my z5500, starts up as if it's going to play, but all I get is 'click... click,click ... click' as far sound goes....
With the screen being so small on the 5500, there's really not much use in a text browser... so I stick with `wget -qO -` for pulling down html source...
opieplayer (1) handles shoutcast streams
[div align=\"right\"][a href=\"index.php?act=findpost&pid=104344\"][{POST_SNAPBACK}][/a][/div]
Yeah, I figured this out last night... It seems its the only option that handles streams properly - it doesn't skip at all.
It doesn't like remote playlists but it doesn't mind local playlists with remote streams, which is alright.
Wrote a script to start up the player using qcop:
#!/bin/sh
# XTC Radio
wget -qO - http://stream.xtcradio.com:8069/listen.pls > /tmp/playlist.pls
qcop QPE/Application/opieplayer 'setDocument(QString)' '/tmp/playlist.pls'
Apparently it supports the following QCOP commands:
qcop QPE/Application/opieplayer 'play()
qcop QPE/Application/opieplayer 'stop()
qcop QPE/Application/opieplayer 'togglePause()
qcop QPE/Application/opieplayer 'next()
qcop QPE/Application/opieplayer 'prev()
qcop QPE/Application/opieplayer 'toggleLooping()
qcop QPE/Application/opieplayer 'toggleShuffled()
qcop QPE/Application/opieplayer 'play(QString)' 'fullpath_to_local_audio_or_m3u_or_pls'
qcop QPE/Application/opieplayer 'add(QString)' 'fullpath_to_local_audio_or_m3u_or_pls'
qcop QPE/Application/opieplayer 'rem(QString)' 'fullpath_to_local_audio_or_m3u_or_pls'
qcop QPE/Application/opieplayer 'setDocument(QString)' 'fullpath_to_local_audio_or_m3u_or_pls'
It looks as if 'volUp()' & 'volDown()' might work given there close position inside the opieplayer binary (when using `strings` on it), however they don't seem to do anything when invoked.
So, I have no way as of yet to control volume/mute... since aumix is broken and I can't figure out if VolumeApplet has any qcop interface...