|
2010-05-30
, 10:36
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#2
|
|
2010-05-30
, 10:47
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#3
|
but now..... it would be cool if i knew a script for Fast Forward.... Rewind.... or best thing it would be if it could skip or go back 5-10 sec....
dbus-send --print-reply --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.set_position int32:1 int32:5
dbus-send --print-reply --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.set_position int32:1 int32:-5
dbus-send --print-reply --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.get_position
|
2010-05-30
, 10:48
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#4
|
The Following User Says Thank You to neboja For This Useful Post: | ||
|
2010-05-30
, 10:54
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#5
|
[...]Pause cmd only pauses the song... it won't continue... (play cmd starts from beginning of the song....)
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.resume
#!/bin/sh #Thanks http://www.gossamer-threads.com/lists/maemo/developers/60881 mode=$(dbus-send --print-reply=literal --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.get_status | tr '\n' ' ' | awk '{print $6}') case $mode in 0) echo "Stopped" ;; 1) echo "Playing" ;; 2) echo "Paused" ;; 3) echo "Transitioning" ;; esac
The Following 3 Users Say Thank You to qwerty12 For This Useful Post: | ||
|
2010-05-30
, 11:52
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#6
|
|
2010-05-30
, 13:04
|
Posts: 243 |
Thanked: 146 times |
Joined on Dec 2009
@ Knowhere
|
#7
|
|
2010-05-30
, 13:18
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#8
|
This looks good. Would it be possible to rotate the queenbeecon widgets by 90 degrees so that we could have a portrait desktop containing info on various system states, and music controls?
The Following User Says Thank You to neboja For This Useful Post: | ||
|
2010-05-30
, 21:55
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#9
|
well.... as far as music controls: you can add a image to widget, but only it won't rotate,.... but, you can make her rotate (that is what i am about to do)
and hey... there's a some brainstorming for QBW developers: can they make a rotate output function???? O_o
The Following User Says Thank You to No!No!No!Yes! For This Useful Post: | ||
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.pause
and then I thought that would be helpful if you could with similar scripts to control the music through QBW ...
then only i replaced "pause", with appropriate command ... AND ITWORKS! : D
here's the script:
PLAY:
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.play
PAUSE:
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.pause
STOP:
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.stop
PREVIOUS:
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.previous
NEXT:
dbus-send --dest=com.nokia.mafw.renderer.Mafw-Gst-Renderer-Plugin.gstrenderer /com/nokia/mafw/renderer/gstrenderer com.nokia.mafw.renderer.next
and you could rearrange it on your desktop in a manner so it would you be comfortable if you using it with your one hand!
great, isn't it??
but now..... it would be cool if i knew a script for Fast Forward.... Rewind.... or best thing it would be if it could skip or go back 5-10 sec.... (if you press a widget for a longer time, it will be shown a "desktop menu"...)
and another thing....: Pause cmd only pauses the song... it won't continue... (play cmd starts from beginning of the song....)
SO PEOPLE... if you could help me with finding a proper scripts (for missing ones), i would be grateful!
P.S. and i found a way to make a PHONE APP icon (widget in this case) bigger!
THX No!No!No!Yes! for QBW