maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Design (https://talk.maemo.org/forumdisplay.php?f=46)
-   -   Custom Icon e.g. Starting Favorite Webradio (https://talk.maemo.org/showthread.php?t=39858)

Reflektorfalke 2010-02-03 23:16

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by cardiff-blues (Post 509535)
OK it wouldn't show up in app manager so I have followed your tip here. Now how do I put the content into my webradio.desktop file that I have just created?

Use a editor of your choice to edit the file...e.g. vi or leafpad
I suggest leafpad as its way easier!

For editing with leafpad enter in Xterm:

leafpad webradio.desktop

cardiff-blues 2010-02-03 23:36

Re: Custom Icon e.g. Starting Favorite Webradio
 
does this look ok?

[Desktop Entry]
Encoding=UTF-8
Version=0.1
Type=Application
Terminal=true
Name=KVMV
Exec=/usr/bin/osso-xterm '/usr/bin/dbus-send --print-reply --dest=com.nokia.mediaplayer
/com/nokia/mediaplayer com.nokia.mediaplayer.mime_open string:"
http://kvmv.streamon.fm/player/player.php?username=KVMV&stream=64k&type=1"'
Icon=X-HildonDesk-ShowInToolbar=true
X-Osso-Type=application/x-executable

Reflektorfalke 2010-02-03 23:46

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by cardiff-blues (Post 509566)
does this look ok?

[Desktop Entry]
Encoding=UTF-8
Version=0.1
Type=Application
Terminal=true
Name=KVMV
Exec=/usr/bin/osso-xterm '/usr/bin/dbus-send --print-reply --dest=com.nokia.mediaplayer
/com/nokia/mediaplayer com.nokia.mediaplayer.mime_open string:"http://kvmv.streamon.fm/player/player.php?username=KVMV&stream=64k&type=1"'
Icon=X-HildonDesk-ShowInToolbar=true
X-Osso-Type=application/x-executable


Looks like there is a blank before http.. ("_http).
Remove this blank and make sure that the Exec command is in one line without break.
Then it should work!


EDIT: Sorry, just noted that your link goes to a webradio player...
But you need to use a link to a media stream...

EDIT2: Check the source of the link you used. There you find this link: http://kvmv.streamon.fm/play/KVMV-64k-168-1.html
And there you find several media streaming links that should work!

les_garten 2010-02-04 03:07

Re: Custom Icon e.g. Starting Favorite Webradio
 
1 Attachment(s)
OK, got this working. Very Kewl!

My Favorite shoutcast server is the one streaming FOX Business channel off Directv in my house!

Here's the Icon I used, looks pretty kewl to me at least.

The Icon is 48x48 and looks great.

Grant 2010-02-04 04:20

Re: Custom Icon e.g. Starting Favorite Webradio
 
Thanks for this guys, it was just what I was looking for. Any way to make it so that media player opens in the background, or make it so you end up back at the desktop? This way, if you setup multiple shortcuts to different stations, you could just quickly switch between all of them right from the desktop.

cardiff-blues 2010-02-04 09:25

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by Reflektorfalke (Post 509580)
EDIT2: Check the source of the link you used. There you find this link: http://kvmv.streamon.fm/play/KVMV-64k-168-1.html
And there you find several media streaming links that should work!

I can now see the icon but when I click on it xterm pops up for a brief moment then disappears but nothing happens. Is this likely to be a problem with the stream url.

Can you try this url in your file to see if it will work
http://kvmv.streamon.fm/stream/KVMV-64k.mp3

les_garten 2010-02-04 17:53

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by cardiff-blues (Post 510072)
I can now see the icon but when I click on it xterm pops up for a brief moment then disappears but nothing happens. Is this likely to be a problem with the stream url.

Can you try this url in your file to see if it will work
http://kvmv.streamon.fm/stream/KVMV-64k.mp3

You need to pay attention to the post that suggested making a simple shell script as the exec line. I did that and there is no xterm POP up. Just opens the stream in the media player.

cardiff-blues 2010-02-04 17:59

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by les_garten (Post 510734)
You need to pay attention to the post that suggested making a simple shell script as the exec line. I did that and there is no xterm POP up. Just opens the stream in the media player.

>>>
When you click on your new icon / shortcut a xterm window will appear for a second before media player starts playing your webradio...
<<<

I don't get it to play anyway so shouldn't it play regardless of whether I create that script or not?

les_garten 2010-02-04 18:37

Re: Custom Icon e.g. Starting Favorite Webradio
 
Quote:

Originally Posted by cardiff-blues (Post 510742)
>>>
When you click on your new icon / shortcut a xterm window will appear for a second before media player starts playing your webradio...
<<<

I don't get it to play anyway so shouldn't it play regardless of whether I create that script or not?

Well, you were mentioning you didn't want the xterm launch. You're going to get that the way you are doing it.

Post your code, if you want help on it.

Here's mine:

[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=TurboNET
Comment=TurboNET Radio
Exec=sh /home/user/turbonet_radio.sh
Icon=shoutcast
Terminal=false
Name=TurboNET
Type=Application
X-HildonDesk-ShowInToolbar=true
X-Osso-Type=application/x-executable

See how simple it is.

#!/bin/bash
/usr/bin/dbus-send --print-reply --dest=com.nokia.mediaplayer /com/nokia/mediaplayer com.nokia.mediaplayer.mime_open string:"http://xxxxxx.com:8000/listen.pls"
exit 0

Reflektorfalke 2010-02-04 19:46

Re: Custom Icon e.g. Starting Favorite Webradio
 
1 Attachment(s)
Quote:

Originally Posted by cardiff-blues (Post 510072)
I can now see the icon but when I click on it xterm pops up for a brief moment then disappears but nothing happens. Is this likely to be a problem with the stream url.

Can you try this url in your file to see if it will work
http://kvmv.streamon.fm/stream/KVMV-64k.mp3

Hi Cardiff-blues,

tested your link and it works!:D

Attached you will find the .desktop file as well as the shell script.

Put
kvmv.desktop into /usr/share/applications/hildon
and
KVMV.sh into /home/user/MyDocs/.documents/Scripts


All times are GMT. The time now is 21:29.

vBulletin® Version 3.8.8