4.2.1 TV Show sorting problem

I have lots of TV shows in iTunes, all tagged fully. With previous versions of iOS, I could copy over episodes from multiple series and they would all sort in correct folders, so I would get:
TV Show 1 - episode 1, 2, 3 etc
TV Show 2 - episode 10,11,12 etc
etc
Since updating the new OS, I just get this:
Unknown - episode 1, 2, 3, 10, 12, 12 etc.
All episodes in a single folder sorted under the name 'unknown'. They were all working perfectly until I installed iOS 4.2.1, and they still work perfectly in iTunes.
Interestingly, content bought from iTunes works fine, but stuff I've ripped and imported myself is now broken. Come on Apple, please test this stuff before you release updates!

Change the season number under the video tab to a three digit number, ie. if it's season 2 episode 3 make the episode number 203.
Leave the track number correct under the info tab and it should fix the problem.
I was pulling my hair out when this happened to me! iTunes was grouping my TV shows properly as was my iPad, but my iPhone was just lumping them all together!! Very frustrating.
I would also provide Apple with feedback on this bug so they can fix the sorting.

Similar Messages

  • My iPad mini retina display wifi 16 GB is showing blank white display and is like frozen. I can't shut it down or restart. It was working perfectly till 13/4/2015 night and next day morning it showing this problem.Please help........

    My iPad mini retina display wifi 16 GB is showing blank white display and is like frozen. I can't shut it down or restart. It was working perfectly till 13/4/2015 night and next day morning it showing this problem.There is no physical damage to my iPad and is in perfect good condition. I updated the latest OS 8.3 version 3 days before this issue happened. I took it to the apple authorised service centre but to my shock they told the display and unit has to be replaced which will cost me Rs.15000/-. It's just been one year and 7 days only since i bought my iPad,i.e, just 7 days out of warranty period only.I don't find any fault with the hardware neither no physical damage is there. Need help to sort out this issue.

    My iPad mini retina display wifi 16 GB is showing blank white display and is like frozen. I can't shut it down or restart. It was working perfectly till 13/4/2015 night and next day morning it showing this problem.There is no physical damage to my iPad and is in perfect good condition. I updated the latest OS 8.3 version 3 days before this issue happened. I took it to the apple authorised service centre but to my shock they told the display and unit has to be replaced which will cost me Rs.15000/-. It's just been one year and 7 days only since i bought my iPad,i.e, just 7 days out of warranty period only.I don't find any fault with the hardware neither no physical damage is there. Need help to sort out this issue.

  • Sorting problems in Grid View

    Hi, I'm having a bit of a sorting problem when it comes to an artist with name variations. The example I'm going to use is DJ Tiesto.
    There are album I have where he is credited as DJ Tiesto, and others where he is simply Tiesto.
    In the end, I'd like these albums sorted chronologically under one name (say DJ Tiesto), while still preserving and showing the proper artist name for each album. I have it set to sort by "Album by Year", which is working fine.
    The major problem I am having is that I can't get it to display properly across all iTunes viewing methods: List mode, Grid mode, and Coverflow.
    I've tried leaving the Artist field alone, and changing the Sort Artist field to "DJ Tiesto" for all songs, and that almost works:
    -List mode groups them all under "DJ Tiesto", while showing each albums Artist as the correct artist name.
    -Grid mode sorted by Album groups them all under "DJ Tiesto", while showing each albums Artist as the correct artist name.
    -Coverflow sorts them all in chronological order, while showing each albums Artist as the correct artist name.
    Problem is, Grid mode sorted by ARTIST creates two separate artists! Some for DJ Tiesto and some for Tiesto!
    To correct this I tried changing the Album Artist field for all songs to "DJ Tiesto", which solved that problem but created a bunch of new ones:
    -List mode is still correctly grouping them under "DJ Tiesto", while showing each albums Artist as the correct artist name.
    -Grid mode sorted by Album is still correctly grouping them under "DJ Tiesto", *however now it is not displaying the correct Artist name for each album!*
    -Grid mode sorted by Artist is now grouping them all under "DJ Tiesto", *however it is not displaying the correct Artist name for each album!*
    -Coverflow is sorting them in correct chronological order, *however it as well is not displaying the correct Artist name for each album!*
    Using the Album Artist tag has created more problems that it has solved! Is there anyone who knows a way to achieve what I am trying to do? I have tried seemingly every option I can and have still not found a way to do this!!
    Thanks!

    My own method of working involves renaming the files upon import to:
    i "shotdate_sequencenumber"
    Files are therefore typically named
    b 2007-11-25_001
    etc.
    This way, sorting by Filename automatically sorts by Date by default. And it wouldn't even matter if you added a descriptive text in between the date and number (
    b 2007-11-25_Scotland_001

  • Sorting problem in TreeMap, please help urgent :-((

    Hi
    Following is a program, please execute it to see the problem. I am adding four elements in the TreeMap. The problem is when I add the elements it never compares the newly added element with the first element. I was sick of it so to test the TreeMap I created my own small class and defined a Comparator for that class. Following is the code which shows the problem in TreeMap. Am I doing something wrong? Please help its urgent.
    import java.util.*;
    public class SortingCollection {
         public static void main(String[] args) {
              SortingCollection sortingCollection = new SortingCollection();
              sortingCollection.sortingTest();
         public void sortingTest() {
              TreeMap treeMap = new TreeMap();
              treeMap.put(new Test("Bhushan", 1022), new Integer(1022));
              treeMap.put(new Test("Wasil", 1023), new Integer(1023));
              treeMap.put(new Test("Ifti", 1020), new Integer(1020));
              treeMap.put(new Test("Roshan", 1021), new Integer(1021));
              System.out.println(treeMap);
              Test test = new Test("Bhushan", 1028);
              treeMap.put(test, new Integer(1022));
              System.out.println(treeMap);
         public class Test implements Comparable {
              public String name;
              public int age;
              public Test(String name, int age) {
                   this.name = name;
                   this.age = age;
              public int compareTo(Object toBeCompared) {
                   Test casted = (Test) toBeCompared;
                   if (name.equals(casted.name)) {
                        System.out.println("Returning 0 for " + name + " " + casted.name);
                        return 0;
                   System.out.println("Returning -1 for " + name + " " + casted.name);
                   return -1;
              public String toString() {
                   return "[" + name + ", " + age + "]";
    }

    If you are using TreeMap, you should want the keys to be immutable. You can't change the state of the keys of a Map such that their natural order will change, or chaos will happen.
    If the key is the GateKeeperInfo class (which has host, port, and # of users as its data members) and the value is "some other object reference which you need", and this reference is closely tied to the GateKeeperInfo, have you considered making it a member of the GateKeeperInfo?
    That way you don't need this TreeMap business. You can have the natural ordering imposed on the GateKeeperInfo class (which is apparently comparing the host and port only). You can also have a Comparator object that can compare these objects in a different way (# of users, for instance).
    public class MyClass implements Comparable
       String host;
       int    port;
       int    currNumUsers;
       Object someOtherObjectReferenceINeed;
       // or if the object reference you need is an Integer, make that last member
       // an int...
       // Also, let's keep a Comparator in here for comparing # of users.
       // See further down for actual implementation...
       public static final Comparator BY_NUM_USERS = new NumUsersComparator();
         // Use the equal methods to determine whether or not host and port matches
       public boolean equals( Object obj )
       // Use the compareTo method to compare 2 instances in terms of host and port
       public int compareTo( Object obj )
         // Make this object take care of changing # of users, outside of the
         // Comparable interface.
         public int getNumUsers();
         public int bumpNumUsers( int byThisAmount ); // changes # of users...
         // Beef up this object to take advantage of someOtherObjectReferenceINeed
    // Use this Comparator object to compare 2 instances of MyClass
    // according to # of users.
    public class NumUsersComparator implements Comparator
         public int compare( Object a, Object b )
              MyClass left      = (MyClass)a;
              MyClass right      = (MyClass)b;
              // I am assuming both # of users are of the same sign...positive
              return ( right.getNumUsers() - left.getNumUsers() );
    // Now when you need to compare, you can do it 2 different ways...
    // You can use whatever Collection you fits, List, Set, ...
    // I am going to use List in this case
    List gateways = new ArrayList;
    // add the objects...
    gateways.add( /* . . . */ );
    // Now let's sort in terms of user/port
    Collections.sort( gateways );
    // Let's sort in terms of number of users...
    Collections.sort( gateways, MyClass.BY_NUM_USERS );
    // I am going to mix them around now...
    Collections.shuffle( gateways );
    // Now let's find the gateway w/ the largest # of users...
    MyClass currMaxGateway = Collections.max( gateways, MyClass.BY_NUM_USERS );
    .

  • Sorting Problem when using HtmlDataTable

    Hello,
    In my table, I am displaying a list of homegrown, POJOs that represent users. Each row displays some info about the user as well as several command links for performing certain actions (like showing details, for instance). The sorting criteria is based upon whichever column is selected (the column names are being displayed via command links).
    The sorting for my list of users is working fine with the exception of the command links per row. That is, if I have the following:
    Last Name     First Name
    Conners            John               Show Details
    Conners            Amy               Show DetailsSay I select the "Show Details" link for the first row. Details for John Conners are displayed. Good. Now I decide to sort the same list by First Name so I get the following:
    Last Name     First Name
    Conners            Amy                Show Details
    Conners            John               Show DetailsThe problem now is that when I select "Show Details" for the first row, information for John Conners appears. No matter what I do, it appears that the links in each row remain associated with whatever objects are displayed for that row the very first time the table is built.
    How can I get the command links to "know" that their associated objects have changed after performing a sort routine?
    Any ideas?
    Jeff

    Solution:
    The problem was related to my usage of the list in conjunction with the code in my backing bean. Initially I was storing my list in the request scope. Basically, what was happening was I'd sort the list based upon a column that was selected. However, before the response was committed, I was retrieving the same list again--only in its previous, unordered state.
    Now I have a less bulky (compared to what it could be) list that I store in the session. After I sort, I make sure to update the list in the session so each link in each row of the data table stay associated with the correct data.
    Here's the sort method:
    public void sort(ActionEvent actionEvent) {
            sortColumn = (ColumnType) ColumnType.getEnumManager().getInstance(
                actionEvent.getComponent().getId());
            logger.debug("Attempting to sort by " + sortColumn);
            Comparator c = null;
            // Sort method will depend upon the column type
            switch (sortColumn.getValue()) {
            case ApplicationConstants.USER_ID_COLUMN:
                c = new BeanPropertyComparator(ApplicationConstants.ID);
                Collections.sort((List) this.getSearchResults(), c);
                break;
            case ApplicationConstants.LAST_NAME_COLUMN:
                c = new BeanPropertyComparator(ApplicationConstants.LAST_NAME);
                Collections.sort((List) this.getSearchResults(), c);
                break;
            case ApplicationConstants.FIRST_NAME_COLUMN:
                c = new BeanPropertyComparator(ApplicationConstants.FIRST_NAME);
                Collections.sort((List) this.getSearchResults(), c);
                break;
            default:
                break;
             * Update the object stored in the session so the sort order will be
             * retained between requests.
            facesContext.getApplication().createValueBinding(
                "#{sessionScope.searchResults}").setValue(facesContext,
                this.getSearchResults());
        }The search results are initialized from a previous search page and its backing bean. The results are passed as a managed property to the bean containing the sort method.
    Some snippets of my edit page that calls the sorting method is below:
    <h:dataTable id="userTable" styleClass="table-background"
                        rowClasses="table-odd-row,table-even-row" cellpadding="5"
                        value="#{pc_Search_user_results.searchResults}" var="searchResult"
                        binding="#{pc_Search_user_results.userTable}">
                        <h:column>
                             <f:facet name="header">
                                  <h:commandLink styleClass="table-header" id="userId"
                                       actionListener="#{pc_Search_user_results.sort}">
                                       <h:outputText value="User ID" />
                                  </h:commandLink>
                             </f:facet>
                             <h:outputText value="#{searchResult.id}" />
                        </h:column>
    <h:column>
                             <h:commandLink id="editLink" action="#{pc_Search_user_results.editUser}">
                                  <h:outputText value="Edit" />
                             </h:commandLink>
                        </h:column>This is a long post, but I thought I'd try to explain for those who attempted to help as well as others.
    Jeff

  • TV Show Sort Order?

    I don't know if I'm alone on this one. But since the introduction of TV Shows in iTunes and FrontRow, my TV Shows have always been in a random order. I regularly download content from the iTunes store, Transfer content from EyeTV and all it seems to do is change the sort order again. I would hope it would sort alphabetically like everything else.
    Can anyone provide any feedback on FrontRow's TV Show sort order?

    I am having the same problem. It's soooo annoying. No matter how you sort your TV programs in iTunes, when you access them in Front Row they're in the most random order. For the life of me I cannot figure out what data is being used to determine this order--not date, not title, not genre, not artist, nothing! Get it together Apple! If anyone has figured this out please share.
    iMac Intel 24"   Mac OS X (10.4)  

  • My new macbook pro is giving me hardtime. even apple team is not being to solve it. they replace the motherboard first it didn't work. second time they formatted the computer and that also didn't work. every time my mac showing different problems.

    my new macbook pro is giving me hardtime. even apple team is not being to solve it. they replace the motherboard first it didn't work. second time they formatted the computer and that also didn't work. every time my mac showing different problems.
    At first my computer had issues. Once it go to sleep it will not back again. I dropped my laptop at apple store to fix it. After 10  days they returned my laptop saying they were no able to fix the problem so they replaced motherboard aiming if that might help. Acttually that didn't help.I had same issue again. I visited apple store again. This time they said they could fix, if I will allow them to format the harddrive. I said ok. They formatted it. It was working fine for few daysAfter few days compter is taking.even more than 15 min to shutdown. Now computer has another problem. It is being hang frequently like every 20'to.30 min.
    I don't know what to do? I still have one month left on first year warranty. I have requested couple times to apple associates either to fix or replace or refund. They are showing me rude behavior. They are not understanding my situation. I am a student. I need to do lot of home work. Since last three month my mac book and apple associates giving me hard time. Any suggestions are welcome.

    Contact Apple Customer Care - not Apple Care - Customer Support. Have your receipts handy and/or case numbers. Be patient, be calm, and tell your story just as you have here. I get the sense you are not in the US and don't have access to an Apple Store but are going to an independent shop. This makes using Customer Support all the more important. If phoning isn't viable, use registered mail.
    Since time is running short, be prepared to purchase AppleCare to exennd your warranty 2 more years. Yes, you shouldn't have to do this, but it gives you added protection and more opportunities over the next 2 years to claim a replacement computer if you don't get one immediately. After dealing with a similar unhappy situation with a Mac in the late 1990s I finally got a replacement computer and reimbursed for the AppleCare policy.

  • My MacBook Pro 13 inch makes a clicking noise from the hard drive and can not start up in safe mode and normal. I then ran disk utility in recovery mode and disk utility shows no problems with the hard drive. What is the problem?

    Please help me, I have a mid 2010 Mac book pro with a toshiba mk3266gsxf harddrive. It started making a clicking noise and then my computer crashed. I proceeded to boot in safe mode, but it doesn't work. When I ran disk utility in recovery mode, it showed no problem with my disk. Does any one know what the problem is?

    Sounds like a mechanical problem with the drive and it ruined the sectors where the Macintosh HD partition (and OS X, and files and programs) reside, but not your Recovery HD partition.
    If you held command option r while booting, that's Internet Recovery and it's loaded via the Internet, not via the Recovery HD partition on the boot drive, so that could mean the drive is dead mechanically or there is another issue.
    In either case the drive will likely have to be replaced, it's a matter of what occured to where and the drive state if you can recover data or not. If you made recent backups then your fine.
    My computer is not working, is my personal data lost?
    Most commonly used backup methods

  • Sorting Problem in FND_MENU_ENTRIES_TL Table

    Hi,
    FND_MENU_ENTRIES_TL Table storing the record FND_MENU_ENTRIES_TL_N1(MENU_ID,PROMPT,LANGUAGE) wise in R12. But whereas in 11i, records stored FND_MENU_ENTRIES_TL_U1(MENU_ID,ENTRY_SEQUENCE,LANGUAGE).
    I am confused, whether i need to recreate the index in R12, so the records will get store MENU_ID,ENTRY_SEQUENCE,LANGUAGE wise.
    Could any one please suggest me how to resolve this problem.
    Thanks,
    Praba T

    815667 wrote:
    Hi,
    FND_MENU_ENTRIES_TL Table storing the record FND_MENU_ENTRIES_TL_N1(MENU_ID,PROMPT,LANGUAGE) wise in R12. But whereas in 11i, records stored FND_MENU_ENTRIES_TL_U1(MENU_ID,ENTRY_SEQUENCE,LANGUAGE).
    I am confused, whether i need to recreate the index in R12, so the records will get store MENU_ID,ENTRY_SEQUENCE,LANGUAGE wise.
    Could any one please suggest me how to resolve this problem.
    Thanks,
    Praba TPl do not abuse the forums by cross-posting in multiple forums
    Sorting Problem in FND_MENU_ENTRIES_TL Table
    Sorting Problem in FND_MENU_ENTRIES_TL Table
    Your issue is related to EBS, not to database upgrades (which is the topic of this forum)
    Srini

  • Sorting problem in webi

    Hi All,
    I have a stored procedure universe. I have a requirement like to show the order how data coming from database.
    But at report level it get sorted. I dont want to show sorted data. when I see table values at universe I am getting order as in database
    Please help me on this
    Thanks

    BO does show the data as it is in the same order how it comes from database. It won't do sorting automatically.
    Check the following possibilites.
    1. Check if you have applied any sort order  / group by clause in query level
    2. Check each column if any sorting applied unintentionally in edit report mode
    If you apply group by clause, obviously the query does sorting based on group by fields. Group by clause appears when you add any measure in  Edit query panel.
    Regards
    Gowtham

  • Sorting problem in standard vendor search help

    Hi all,
    I'm enhancing the vendor search help.
    I found that there is a sorting problem in the original standard search help.
    The 1st time to search vendor in the search help returns a correct list, then I just sort the vendor in ascending order. This time the column name of the hit list changes and mismatch the actual values.
    Any one faced this problem before?
    What's wrong are there ?
    Thanks.

    Thanks Peluka.
    But even I don't enhance the vendor search help, I still found that the original standard version has this problem after sorting.
    Is that the program bug?
    Have anyone encountered this problem before?

  • LaserJet 2600n Print Quality problem (with a scan showing the problem)

    I'm trying to create areas of solid colour in order to use the toner transfer method of making printed circuits.  To do that I need to print really dark solid black blocks - when I try that I see uneven toner in certain areas.  This scan of the output shows the problem:
    There are lighter areas (less covered by toner) at the bottom (page orientation wise) of solid black blocks - but only where there is a subsequent block of black below!  For example, the leftmost shape's bottom edge is fine. 
    I'm perplexed.  I'm very impressed with the configurability of the 2600n, and I get the feeling that there's probably a setting I could tweak to solve this, and I'm hoping that there's a laser printer expert reading this forum who'll have some suggestions.
    Cheers,
    Chris.

    It looks to me as if you have your print quality setting in your printer driver set to standard or draft rather than set to best photo. This setting has to be changed in your printer driver which is accessed by the button in the lower left-hand corner of the screen when you are in the print module.

  • Imported RAW images badly corrupted, looks like red paint splashed all over the sky.  Photoshop and Iphoto have no problem with the images from my D800E.  Aperture worked fine for me in June with the same camera.  The Nikon software shows no problem.

    I am having a problem importing my images into Aperture 3 from my Nikon D800E.  The images appear as if red paint was splashed across the sky.  The Nikon software used to transfer from the camera does not show this problem and Photoshop 6 is fine with the images exported as jpg from the Nikon software.  Aperature does not even like the jpg images usable by Photoshop.  I am suspecting that Aperture is not correctly using the camera raw file.  Also, the histograms are radically different between the corrupted images and the Photoshop (good) versions.  Aperture worked just fine for me in June with the same camera.  All drivers and software are current as of this posting.  Anyone else out there seen this before??

    Are you sure you do not have Highlight Hot & Cold Areas turned on? (View->Highlight Hot & Cold Areas)?
    The bug in Digital Camera raw only affected Raw images. In your first post you wrote:
    Aperature does not even like the jpg images usable by Photoshop
    If the JPG's have the same problem then it isn't this bug.
    regards

  • This is second time i show my problem and no answer.

    this is second time i show my problem and no answer.
    I have problem in my iphone icloud password and apple password are not same ihave apple password when i wont
    to access to icloud i cant but no problem to use apple password in app store.
    my problem is iforget icloud password and its not same apple password and iclud password?
    plz help me plz

    You got an answer here: I forget icloud password. Apple ID and icloud have different password  And i cant use apple id in i cloud   Plz help me

  • My camera icon showing some problem

    My camera icon showing some problem, i still can access and see it, but the problem is, my camera's icon on the home menu is not showing properly, it is just a empty grey icon, how i can solve this?

    Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears)

Maybe you are looking for

  • Iphone &ipod blue screen error

    does anyone know how to fix a iphone and ipod blue screen error. i just installed itunes 8, the other day, and was able to sync both devices, then the other day i went to charge both my phone and ipod, and when i connect both devices to my docking st

  • Help with iPhoto version 7.1.5

    some iphoto pictures show on the library but not in the albums  (only the MB)

  • How to decide component size to contain all data?

    Hi, all My application has some jtable and jtextarea which always contained in jscrollpane, not because what I need but because I don't have a idea to determine size for my component. Let's say my jtable has 30 rows, I know how to control width for c

  • Where is the install save

    download thr Lion OS and install successful, But where can I finr the installer and burn it ot DVD for future re-install please advise

  • IPhoto + Facebook uploader

    Has anyone seen/solved this problem? When I try to upload photos using the Facebook uploader, it uploads one photo and then stops uploading the rest of the photos, saying "An unknown error has occurred." Is something wrong with my photos? My iPhoto?