MediaPortal Forums HTPC/MediaCenter

Go Back   MediaPortal Forum » MediaPortal 1 » Main Features (talk, share your ideas, get support) » Watch / Listen Media » Listen Music » Support


Support Post problems you have with MediaPortals Music features here.

Reply
 
Thread Tools Display Modes
Old 2006-07-07, 04:31   #1 (permalink)
Portal Member
 
Join Date: Jun 2006
Posts: 66
Thanks: 0
Thanked 0 Times in 0 Posts


Default Sorting My Music folder

If I switch the view by artist ...is there a way to sort it by name=> album => track? it always defaults back to name after I restart it.
burdell1 is offline   Reply With Quote
Old 2006-07-07, 10:02   #2 (permalink)
Portal Developer
 
hwahrmann's Avatar
 
Join Date: Sep 2004
Location: Vienna, Austria
Posts: 1,502
Thanks: 3
Thanked 89 Times in 55 Posts

Country:


Default

go in Configuration and select Music -> Music Sort.
here you can define what fields are displayed in the various views.
hwahrmann is offline   Reply With Quote
Old 2007-01-15, 21:19   #3 (permalink)
Portal User
 
Join Date: Jan 2007
Age: 26
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Hi,
I try changing the music sorting in the configuration but it doesn't seem to stick. When I open the config again the sorting has reverted back to "Name". Bug?

/Andreas
kaladon is offline   Reply With Quote
Old 2007-01-15, 21:30   #4 (permalink)
Portal User
 
Join Date: Jan 2007
Age: 26
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts


Default

Sorry, forgot some additional info: ver. is 0.2.2 and the debug log file doesn't show anything strange to me.
kaladon is offline   Reply With Quote
Old 2007-02-10, 20:07   #5 (permalink)
Portal Developer
 
Koudijs's Avatar
 
Join Date: Jan 2007
Age: 34
Posts: 133
Thanks: 1
Thanked 3 Times in 3 Posts

Country:

My System

Default

I also see that the sort method always returns to Name after restarting MP. I think that it is much more logical if the default sort method is related to the currently used view.

I normally use the Artist view that is build up as Artist:Album:Track in the Music->Music Views configuration. In Music->Music Sort I have configured the fields that I would like to see for Artist, Album and Track. With this configuration I would expect that when I enter My Music and select the Artist view a list of artists is show and Sort is also set to Artist. After selecting an artist there will be a list of albums sorted by Album. By selecting an album the tracks appear which are sorted by Track.

It should still be possible to change the sort method within My Music and these changes should be saved in order to get them back after a restart.

Is the behavior I discribed the intended behavior or have I missed something and is it working differently?

Best regards,
Jan
Koudijs is offline   Reply With Quote
Old 2007-02-26, 00:05   #6 (permalink)
Portal Member
 
Join Date: Feb 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts

Country:


Default

Quote:
Originally Posted by Koudijs View Post
I also see that the sort method always returns to Name after restarting MP. I think that it is much more logical if the default sort method is related to the currently used view.

I normally use the Artist view that is build up as Artist:Album:Track in the Music->Music Views configuration. In Music->Music Sort I have configured the fields that I would like to see for Artist, Album and Track. With this configuration I would expect that when I enter My Music and select the Artist view a list of artists is show and Sort is also set to Artist. After selecting an artist there will be a list of albums sorted by Album. By selecting an album the tracks appear which are sorted by Track.

It should still be possible to change the sort method within My Music and these changes should be saved in order to get them back after a restart.

Is the behavior I discribed the intended behavior or have I missed something and is it working differently?

Best regards,
Jan
I would like to set my default views up in the same fashion. I can't seem to get it working myself.
klinsek is offline   Reply With Quote
Old 2007-03-12, 21:09   #7 (permalink)
Portal Developer
 
Koudijs's Avatar
 
Join Date: Jan 2007
Age: 34
Posts: 133
Thanks: 1
Thanked 3 Times in 3 Posts

Country:

My System

Default

I checked the code for the current implementation of the sort function within My Music and discovered the following:

In the Shares view the sort method is saved in the database on a per directory basis.

For all database views (Genres till Songs) the sort method is not saved, as reported before in this forum. As long as Mediaportal is running the sort method is stored on a per level basis. A level is a line in the Music->Music Views configuration in Setup (e.g. I configured the Artists view as Artist:Album:Track so this makes three levels). By changing the sort method of a specific level and view all corresponding levels of the other views are changed as well.

The current implementation is in my opinion not very usefull and therefore I modified it based on the method I already described in my previous post. I created a fixed relation between the Selection column in Music->Music Views and the used sort method:

Code:
Selection Sort
album                   Album
artist                    Artist
title                      Title,
genre                   Name,
year                     Name,
track                    Track,
timesplayed          Rating
rating                   Rating
favorites               Name
The fields that are displayed for the different sort methods can still be configured in Music->Music Sort. To make the change I performed a bit clearer I added some screenshots:
  1. Artists view; artist selection (level 1); automatically sorted by artist
  2. Artists view; album selection (level 2); automatically sorted by album
  3. Artists view; track selection (level 3); automatically sorted by track
  4. Songs view; title selection (level 1); automatically sorted by title

This implementation has not the maximum flexibility but gives a better useability without additional configuration.

I invite all of you to give your opinion about this. After that I would like to commit my changes to SVN.


Regards,
Jan
Attached Thumbnails
sorting-my-music-folder-artists1.jpg  sorting-my-music-folder-artists2.jpg  sorting-my-music-folder-artists3.jpg  sorting-my-music-folder-songs.jpg  
Koudijs is offline   Reply With Quote
Old 2007-03-17, 21:51   #8 (permalink)
Portal Member
 
Join Date: Jun 2006
Posts: 301
Thanks: 1
Thanked 4 Times in 4 Posts

Country:


Default

Excellent. I have been messing about with the views/sorts options in MP config for ages to try and get this sorted out. The sorts you mentioned sound perfect, but surely it should be user changable incase other dont like that sort method?

However, a big thumbs up from me!
sleepycol is offline   Reply With Quote
Old 2007-03-17, 23:49   #9 (permalink)
Portal Developer
 
Koudijs's Avatar
 
Join Date: Jan 2007
Age: 34
Posts: 133
Thanks: 1
Thanked 3 Times in 3 Posts

Country:

My System

Default

Quote:
Originally Posted by sleepycol View Post
However, a big thumbs up from me!
Thank you.


In my current implementation I disabled the 'Sort by' button for the database views of 'My Music'. This was the easiest way to do it because in the implementation that is used till now changing the sort method can influence all views.

To get the maximum flexibility the 'Music Views' table in configuration.exe should be extended with a column in which the sort method for each level can be specified. This is a more complex implementation but it should be possible if there is a need for it.

Jan
Koudijs is offline   Reply With Quote
Old 2007-03-18, 16:07   #10 (permalink)
Retired Team Member
 
Join Date: Sep 2005
Posts: 618
Thanks: 5
Thanked 9 Times in 6 Posts

Country:

My System

Default

excelent idea
idioteque is offline   Reply With Quote
Reply

Bookmarks

Tags
folder, music, sorting

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Folder Shortcuts in Music Database? Phatteus Support 7 2006-12-20 13:41
No Music Folder Selected oakster General Support 1 2006-04-03 13:49
all files in music folder turned into "unknown - unknow dimitri General Support 1 2006-03-10 10:52
Network folder as music folder?? sitdown General Support 10 2006-01-14 11:19
My Music -> Tell what folder you're browsing mikael Improvement Suggestions 2 2005-06-14 16:02


All times are GMT +1. The time now is 16:42.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Protected by Akismet Blog with WordPress
Advertisement System V2.6 By   Branden