How to calculate and display total size of an album? 2019-02-05 20:50:12 Hello!Is there any way to calculate total size (filesize) of an album (group, multiple tracks) and display it as info in the title? I'm using ELplaylist. Thank you!
Re: How to calculate and display total size of an album? Reply #1 – 2019-02-05 20:57:49 I don't think Elplaylist has that option. Looking at the elplaylist wiki the only grouping info syntax available is group count (%el_item_count%) and sum length (%el_sum_length%). There's no %el_sum_filesize%.
Re: How to calculate and display total size of an album? Reply #2 – 2019-02-05 21:02:54 Thank you for replay, jazzthieve!Yes, this is what I found. I hoped there might be an alternative.
Re: How to calculate and display total size of an album? Reply #3 – 2019-02-06 23:11:07 Quote from: edwardsch on 2019-02-05 20:50:12Hello!Is there any way to calculate total size (filesize) of an album (group, multiple tracks) and display it as info in the title? I'm using ELplaylist. Thank you!Not with ELplaylist but with playlist switcher you can do!Here you go:1. Your request File - Preferences - Playlist switcher - General - window below - erase all and copy - paste these settings:%title% - $div(%filesize%,1048576).$num($muldiv($mod(%filesize%,1048576),100,1048576),2) MBApply.2. Advanced settingsFile - Preferences - Playlist switcher - General - window below - erase all and copy - paste these settings: $if(%is_playing%,'NOW PLAYING PLAYLIST >>> ' $if(%is_active%,,$rgb(255,255,5)))%title%$tab()TRACKS TOTAL - %size%$tab()PLAYLIST TOTAL TIME - %length%$tab()TOTAL SIZE - $div(%filesize%,1048576).$num($muldiv($mod(%filesize%,1048576),100,1048576),2) MBApply.You can see with these settings: 1. Highlight active playlist2. Show you sum of all tracks in active playlist3. Show you total length of all track in active playlist4. Show you total filesize of all tracks in active playlist Last Edit: 2019-02-06 23:36:55 by Simon_ Thunder
Re: How to calculate and display total size of an album? Reply #4 – 2019-02-07 11:00:01 i will notice you: 1. %filesize% = show you file size in kilobytes2. $div(%filesize%,1048576).$num($muldiv($mod(%filesize%,1048576),100,1048576),2) MB - show you size in megabytes
Re: How to calculate and display total size of an album? Reply #5 – 2019-02-11 09:32:09 Thank you, Simon_ Thunder, for the detailed answer!I already have this setting in my Playlist Switcher. I was looking for a way to calculate the total size of an album, not of a playlist. In a playlist i may have multiple albums...Anyway, I appreciate your effort!