![]() |
2011-04-21
, 12:29
|
|
Posts: 1,030 |
Thanked: 792 times |
Joined on Jun 2009
|
#2
|
![]() |
2011-04-21
, 12:36
|
|
Posts: 275 |
Thanked: 389 times |
Joined on Feb 2010
@ Sydney
|
#3
|
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetArt string:<album-name>
The Following 5 Users Say Thank You to GreatGonzo For This Useful Post: | ||
![]() |
2011-04-22
, 04:40
|
|
Posts: 275 |
Thanked: 389 times |
Joined on Feb 2010
@ Sydney
|
#4
|
The Following User Says Thank You to GreatGonzo For This Useful Post: | ||
![]() |
2011-07-21
, 10:31
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#5
|
![]() |
2011-07-21
, 15:30
|
Posts: 536 |
Thanked: 81 times |
Joined on May 2011
@ Russia
|
#6
|
![]() |
2011-08-26
, 23:08
|
|
Posts: 468 |
Thanked: 775 times |
Joined on May 2010
@ Hereford, England
|
#7
|
![]() |
2011-08-30
, 02:10
|
|
Posts: 140 |
Thanked: 369 times |
Joined on Jun 2010
@ Ituzaingo, Argentina
|
#8
|
Hi GreatGonzo. I have a question for you (or anyone else). I am using this command
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetArt string:<album-name>
in queen beecon widget, and I have the result, but it shows the underlying information, rather than the actual art. For example
method return sender=1.65- dest=1.305reply_serial=2string"/home/user/.cache/media-art/album-725ee9 etc etc etc ......jpeg"
Also, with the other commands listed in this thread, I get the result, but it also shows all the string information as well, rather than just the track name for example. Any ideas. How can I single out the part of the result I want. Am I missing something or is this how the results are intended to be shown? Thanks for any help.
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetArt | awk '{ FS="\\""} {print $2}' | tail -1
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetTitle | awk 'BEGIN{FS="\\""} {print $2}' | tail -1
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetArtist | awk 'BEGIN{ FS="\\""} {print $2}' | tail -1
dbus-send --print-reply --dest=com.marquarding.trackinfo / com.marquarding.trackinfo.GetAlbum | awk 'BEGIN{ FS="\\""} {print $2}' | tail -1
The Following User Says Thank You to Harick For This Useful Post: | ||
![]() |
2012-05-06
, 15:37
|
Posts: 2,292 |
Thanked: 4,135 times |
Joined on Apr 2010
@ UK
|
#9
|
![]() |
2012-05-18
, 10:50
|
|
Posts: 110 |
Thanked: 59 times |
Joined on Nov 2010
@ Bangalore
|
#10
|
Description:
A dbus wrapper (event.d "daemon) around song metadata.
The metadata for the currently playing song in MAFW is spread through
several interfaces and signals. It is also lacking album art. This "daemon" processes these and presents a more sensible interface.
The main benefit of this will be quick-widgets and queen beecons. I can now have a player widget for the built-in media player and/or the OMP.
It should have minimal effect on battery usage an uses about 5MB of memory.
The methods are
Source:
https://bitbucket.org/mmarquar/mafw-trackinfo
Quick Widgets - http://wiki.maemo.org/Quick_Widgets
Last edited by GreatGonzo; 2011-04-22 at 05:37.