knutinh said:I am leaving until the 28th. I may look into it after that. I have some minor functionality ideas. Such as when scrolling through files, Id rather show two lines of files temporarily,
-----
Song title N-1
Song title N
-------
then return to the current view after a while:
-----
My music
Song title
------
Also, I`d like a graphic view of song/movie progress bar, even if it is ASCII-based. Today mp3 progression would look like :
-----
0.39/3.55
-----
I`d like it to be:
----------
[=========| ]
66% completed, 3:55 total
----------
Or something similar
regards
Knut
@knut,
You can edit the ExternalDisplay.xml
and change the messages showed on LCD.
% of song, replace the code in the file with this... It also fixes the artist/title information!!!!!
<Message Status="PlayingMusic">
<Line Alignment="Left">
<Property Value="#Play.Current.Title" />
<Parse Value=" by #Play.Current.Artist">
<NotNull Value="#Play.Current.Album" />
</Parse>
<Parse Value=", from the album #Play.Current.Album">
<NotNull Value="#Play.Current.Album" />
</Parse>
</Line>
<Line Alignment="Left">
<Parse Value="#percentage/#duration" />
<Text Value=" (#112)">
<NotNull Value="#playlogo" />
</Text>
</Line>
Hope to hear if it worked for you!