1
Theming and Appearance Customization / Re: Anybody has the Myriad font for rockbox?
« Last post by Pulverize6100 on Today at 02:47:27 PM »2
Feature Ideas / Re: Save downscaled album art in database as cache
« Last post by saratoga on Today at 12:36:02 PM »If the album art is embedded you have to parse it anyway to get to the audio, so only savings would be the resizing. At 4MP should be pretty quick I think.
Is it slow with embedded or folder jpg?
Is it slow with embedded or folder jpg?
3
Feature Ideas / Re: Save downscaled album art in database as cache
« Last post by Yakov5776 on Today at 11:53:54 AM »My album sizes are 2000x2000, all my music use those dimensions.
Also, I'm not implying necessarily that the resizing aspect of it is what takes a long time (It could be loading the art into stream, parsing it, etc), All I'm saying is having this pre-resized in the database will guarantee performance for music with larger album arts that are anyways way above the resolution of the iPod screen.
Also, I'm not implying necessarily that the resizing aspect of it is what takes a long time (It could be loading the art into stream, parsing it, etc), All I'm saying is having this pre-resized in the database will guarantee performance for music with larger album arts that are anyways way above the resolution of the iPod screen.
4
Feature Ideas / Re: Save downscaled album art in database as cache
« Last post by saratoga on Today at 07:13:37 AM »How big is your album art? Generally resizing is relatively quick.
5
Theming and Appearance Customization / Re: Bones Theme
« Last post by Dook on Today at 04:13:47 AM »When using %cl to show 12h time, hiding the leading digit.
Alignment still counts the space of the hidden character.Code: [Select]#__Time
%V(20,20,97,-,5)
%al%?cf<%cH|%cl>:%cM:%cS
#
Anyone know a trick to fix this.
I had issues with alignment too, it has an extra space at the left. The best solution I found was to explicitly write the numbers from a conditional tag for the hour. This is my whole time display solution, feel free to use it
Code: [Select]
%?cf<%cH:%cM|%?cl<1|2|3|4|5|6|7|8|9|10|11|12>:%cM%cp>
6
Feature Ideas / Save downscaled album art in database as cache
« Last post by Yakov5776 on Today at 02:28:31 AM »Hey, the reason for this feature request is because every song I load takes a long time to load (5s-30s)
My proposal is to store a compressed version of the album art (e.g. 200x200) which is to be saved in the database so music with larger album arts won't take time to load anymore.
As of now, the only workarounds are either: (a) disabling album art covers or (b) downscaling/compressing album art manually using tools like mp3tag which is pretty tedious and requires A PC and modifying the original music file.
My proposal is to store a compressed version of the album art (e.g. 200x200) which is to be saved in the database so music with larger album arts won't take time to load anymore.
As of now, the only workarounds are either: (a) disabling album art covers or (b) downscaling/compressing album art manually using tools like mp3tag which is pretty tedious and requires A PC and modifying the original music file.
7
Theming and Appearance Customization / Re: Bones Theme
« Last post by chuck_lardo on Today at 01:15:56 AM »When using %cl to show 12h time, hiding the leading digit.
Alignment still counts the space of the hidden character.
Anyone know a trick to fix this.
Alignment still counts the space of the hidden character.
Code: [Select]
#__Time
%V(20,20,97,-,5)
%al%?cf<%cH|%cl>:%cM:%cS
#
Anyone know a trick to fix this.
8
Theming and Appearance Customization / Anybody has the Myriad font for rockbox?
« Last post by Pulverize6100 on November 13, 2024, 07:54:35 PM »Anybody has the Myriad font for rockbox? I would be ready to pay for it. I don't know how to convert it myself.
Thanks!
Thanks!
9
Theming and Appearance Customization / Re: Bones Theme
« Last post by chuck_lardo on November 13, 2024, 04:47:44 PM »Updated the theme. Thanks everyone for all the comments and ideas.
Fixed a couple of alignment and spacing issues.
Track remaining time now fits.
Fixed the clock on the hold screen to correctly display 12/24h time (thanks rockboxdev_123). It still shows the bones xxx in 24h time and AM/PM in 12h time.
I understand the requests for a battery display and more file info on the WPS but I would like to keep the minimal aesthetic to the theme and decided not to ruin it by adding more clutter.
As you guys have shown you are more than capable of adding what you need
P.S. New theme in the works.
Thanks Chuck. Looking forward to seeing a new theme.
I made a diff below of the original theme and your updates so that it is easier to visualize the new changes. (I've omitted the version change patches from 1.0 to 1.1)
BONES/themes/BONES.cfgCode: [Select]-selector type:
-line selector start color:
-line selector text color:
-filetype colours: -
+selector type: bar (inverse)
BONES_update/wps/BONES.wpsCode: [Select]#__Time Elapsed
-%Vl(mainDisplay,30,190,40,15,2)
+%Vl(mainDisplay,30,190,60,15,2)Code: [Select]#__Time Total
-%Vl(mainDisplay,-70,190,40,15,2)
+%Vl(mainDisplay,-90,190,60,15,2)Code: [Select]#__Time
%Vl(holdScreen,30,70,160,60,5)
-%cH:%cM
+%?cf<%cH|%cI>:%cMCode: [Select]#__xxx
%Vl(holdScreen,-110,100,80,22,3)
-%arxxx
+%ar%?cf<xxx|%cP>Code: [Select]#__Battery Bar
-%Vl(holdScreen,70,31,180,11,-)
+%Vl(holdScreen,70,32,180,11,-)
Cool, nice! Thanks.
10
Theming and Appearance Customization / Tag for total track time of Next Track in WPS?
« Last post by iPodVT on November 13, 2024, 04:10:23 PM »I can't seem to find a tag for displaying the total track time for the Next Track in the WPS. I know that %pt gives the total track time for the Now Playing track, and so I tried %Pt (a la %it and %It) but that crashed my theme's WPS into the failsafe WPS. I figure there must be a way to get it because the Database Viewer displays total track times for each of the tracks in its lists. Please forgive me if it's right in front of my nose but I'm still not seeing it. Thanks.