IPhone Videos TV Show sort display issue

Uploaded new ios upgrade. Now when I synch multiple TV shows, under videos they all get lumped under "TV Shows", and if you look carefully the episodes are listed not seperated by shows, but alphabetic, and will show season number, but has a zero for episode number. Not very useful.

Use the search field my friend - the thread with all your answers is there just a few keystrokes away.

Similar Messages

  • I have an iphone 4s that is having display issues. If I turn the phone on, it vibrates to acknowledge it successfully turned on but the screen stays solid black. I can plug the phone into my computer and itunes will recognize the phone as well.

    I have an iphone 4s that is having display issues. If I turn the phone on, it vibrates to acknowledge it successfully turned on but the screen stays solid black. I can plug the phone into my computer and itunes will recognize the phone as well. However, itunes can not do anything with the phone because the phone is locked and I can not unlock the phone because the screen is black.
    >CURVEBALL!!!<
    The screen does work though! Through trial and error along side a little troubleshooting, I was able to figure out that the screen will cut on after the phone dies completely. The phone has to die completely with no battery power left. Then if I plug the phone into a charge and wait a while for it to charge, the phone will turn on like nothing was ever even wrong with it. I charge the phone up to like 30% and turn it off then bam the phone turns on but the screen is solid black again.
    I am currently in the process of waiting for the phone to die and when I turn the phone back on I am going to completely remove the auto-lock and lock code off of the phone for the time being.
    Any other suggestions? Please help!

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • IPhone 4 Calendar Entries: List Display Issue

    I believe a derivation of this issue has been posted a handful of times already, but I wanted to add to the pile in the hopes that Apple addresses a calendar bug. My iPhone 4 is running OS 4.2.1, and I sync my calendar with Microsoft Outlook 2007 via a PC.
    Recently I've noticed that when changing time zones, the "List" view of my iPhone calendar has trouble displaying the proper date of appointments when they are entered or changed in the iPhone directly. Two "Tue Nov 30 2010" gray bars will suddenly appear, for example, and previously entered appointments for that date will scatter amongst these two sections haphazardly.
    Interestingly enough, when clicking into "Day" or "Month," these entered appointments will display properly. It appears, then, that this issue is only present in the "List" view.
    Somewhat bizarrely, these sections in the "List" view will compress back into one (as normal) when the offending appointment is deleted on the iPhone. Moreover, when new appointments are entered via Outlook and synced with the iPhone, the calendar displays as normal in "List" view.
    This issue has plagued my phone for a handful of months now when I transition time zones, but only recently has it not reset itself upon syncing with my computer. This leads me to believe that the issue may have been exacerbated by OS 4.2.1. For what it's worth, time zone support is "off" on my phone (meaning appointments display in local time).
    Any help you can provide with this issue is appreciated.

    Good to hear that I am not alone.
    I have the same problem (for some time now, not just 4.2.1). I have tried deleting my calendar and resynching with Exchange with a reboot in between (as suggested in another problem report), but that does not help.
    For me the problem started when I started bidirectional synching with Exchange (updates on iPhone are sent to server and updates on server are sent to iPhone, immediately in both directions) -- as if the iPhone calendar list search does not work well because the entries are "remote" (actually stored on Exchange server?).
    There are similar quirks with Contacts but Calendar List Search is unusable!

  • Imported audiobook and iPhone videos not showing in main library.

    Today I imported an Audible book I had downloaded by dragging the files onto the "Library" section of iTunes. The progress bar showed that the files were being imported and the book shows up in a smart playlist in the "Playlist" section but not in the "Books" category of the library. I have checked and the files are exactly where they are supposed to be on my hard drive with this author's other books. A similar thing happened when I imported videos from my iPhone. I had downloaded them from my phone onto my desktop and then dragged them onto the library where the progress bar showed they were imported. They are not in the "Movies" library but when I went to sync them onto my iPad2 they show under the "Movies" tab of the iPad and were successfully synchronized onto my iPad2. I tried quiting iTunes and restarting it but this did not cause them to show up. I then restart the whole computer but still no go.
    Any suggestions? I am running iTunes 10.6 (40) on an Intel Core 2 Duo iMac running OSX 10.7.3.
    Thanks,
    Clayton

    Properly tag them in itunes before transferring them over.

  • IPhone Videos TV shows. All shows now lumped into 1 folder

    Since the last IOS update all my TV shows are now in 1 folder. Within that I have 6 folders named Season 1 - 6. In each subfolder are my shows which are not grouped by show. As there are no sort/grouping options in IOS I assume this has to be done via iTunes but for the life of me I can't find the appropriate setting.
    Thanks

    What version of itunes are you using, have you updated to the latest, 7.5? If so when you connect your ipod to the computer, and select the ipod from the right hand pane in itunes, the main window should change to show a overview of your ipod. Across the top of the overview pane there should be different tabs music/movies/tv shows etc. In the music tab make sure sync music videos is selected, under the tv show tab choose sync all tv shows. Also if you have itunes set to only sync checked items make sure that all of the videos and tv shows have the check mark next to them. Resync your ipod, and they should show up in the appropriate category under videos on your ipod. (The music videos will also show up in the music section of the ipod, but will only play the audio if you select them from there)

  • Sorting displaying issue

    I am trying to display a list sorted by year, then title and then subtitle. if there are no subtitles, titles should appear by itself. if there are subtitles then they should appear under titles, all in alph order.
    Here is a pic of what i am trying to get: http://www.flickr.com/photos/irfanirfan/8740957103/
    Here is the code I have so far, any poniters would be helpful.
    <cfquery name="getYear" DATASOURCE="LibDB" DBTYPE="ODBC">
    SELECT distinct Year
    FROM Everything
    WHERE deleteflag = 0
    ORDER by Year DESC
    </cfquery>
    <cfoutput>
    <cfloop query="getYear">
      <br><a onClick="Toggle('#getYear.Year#')" class="toggle" style="border-top: 0px;" onMouseOver="this.style.cursor='pointer';">
       <b>#getYear.Year#</b></a><span id="toggle#getYear.Year#" style="display: true"><img src='images/max.gif' alt='Maximize' border=0></span><br>
      <div id="div#getYear.Year#" style="display: none;" class="toggle">
       <cfquery name="getTitle" DATASOURCE="LibDB" DBTYPE="ODBC">
        SELECT distinct Title
        FROM Everything
        WHERE deleteflag = 0 and Year = '#getYear.Year#'
        ORDER by Title
       </cfquery>
       <cfloop query="getTitle">
            <a onClick="Toggle('#getTitle.Title#')" class="toggle" style="border-top: 0px;" onMouseOver="this.style.cursor='pointer';">
        #getTitle.Title#</a><span id="toggle#getTitle.Title#" style="display: true"><img src='images/max.gif' alt='Maximize' border=0></span><br>
        <div id="div#getTitle.Title#" style="display: none;" class="toggle">
        <cfquery name="getAll" DATASOURCE="LibDB" DBTYPE="ODBC">
         SELECT *
         FROM Everything
         WHERE deleteflag = 0 and Year = '#getYear.Year#' and Title = '#getTitle.Title#'
         ORDER by Title, subTitle
        </cfquery>
        <cfloop query="getAll">
                 #subTitle#<br>
        </cfloop>
       </div>
       </cfloop>
      </div>
    </cfloop>
    </cfoutput>

    What about putting <span> after the last query, and adding an if-condition, like this:
    <cfloop query="getTitle">
        <a onClick="Toggle('#getTitle.Title#')" class="toggle" style="border-top: 0px;" onMouseOver="this.style.cursor='pointer';">#getTitle.Title#</a>
        <cfquery name="getAll" DATASOURCE="LibDB" DBTYPE="ODBC">
        SELECT *
        FROM Everything
        WHERE deleteflag = 0 and Year = '#getYear.Year#' and Title = '#getTitle.Title#'
        ORDER by Title, subTitle
        </cfquery>
       <cfif getAll.RecordCount NEQ 0>
            <span id="toggle#getTitle.Title#" style="display: true"><img src='images/max.gif' alt='Maximize' border=0></span><br>
            <div id="div#getTitle.Title#" style="display: none;" class="toggle">
            <cfloop query="getAll">
                 #subTitle#<br>
            </cfloop>
            </div>
        </cfif>
    </cfloop>

  • MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.

    MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.How do I solve this issue?

    Go step by step and test.
    1. Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204
    2. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    3. Deselect Proxies if selected.
        System Preference > Network > Advanced  > Proxies Tab
        Under "Select Protocol", uncheck any box if selected.
        Click "OK" then  "Apply”.

  • Pre Lion iPhone videos show Thumbnail but can't play - new video generates Unsupported Video Format popup, no thumb but will play via quicktime

    This is really frustrating -
    Over the last year I have been uploading all of my photos and occasional iPhone video to Aperture 3 (latest version all patches in place).    Aperture would recognize the video, create a thumbnale and otherwise treat it nicely.
    Now, since upgrading to Lion I find that though I can "see" the old videos in their folders or projects and the associated Thunbnale, I can't play them - I either get the spinning color wheel and then nothing or Aperture will crash and report an error relating to Quicktime (sorry don't have an error code at the moment).
    If I try and export a video I can - but what I get also can't be played by Quicktime - just a black screen.  When I hit Play - the scroll bar moves, but there is no sound or video.
    From Final Cut Pro X, I can imoprt this exported video file and see that it appears complete - but FCPX uses it's own playback elements.
    If I shoot a new video on my iPhone, I find that I can see the thumbnale in the import option of Aperture when looking at the phone, but once imported I get a Popup telling me that it is an "Unsupported Video Format" - "Do you want to open this video clip with QuickTIme Player?"   If I hit Open then the clip does play, but the thumbnale remains a black square with the warning Exclamation Point.
    I have also had some issues with Lion Mail crashing when trying to play a video made on an iPhone and sent to me via email.   Seems more likley to be a Lion / Quicktime issue then an Aperture and Mail issue - but who knows.
    I spent 2.5 hours of quality time with the Genius bar this morning.  We reinstalled Lion and after that the suggestion was to trash and re-install Aperture, but that would require my disc and of coruse a trip home.   Mail doesn't seem to still have the issues with iPhone movies that it had - but Aperture is still not happy.
    Did as instructed and dragged Aperture 3 to the trash, did the empty trash option, restarted and reinstalled.   Then did a software update to catch the new update for Aperture and it found that.   Interestingly when I did start it up after that it DID NOT ask me for my key - so clearly some elements were left over.  
    Now upon retstarting Aperture 3 once again I find that I can still see my old movies (their thumbnails show up) but I still can't play them.   The new test movie is there but still generates the popup regarding it being an Unsupported Video Format.
    And it's not just my iPhone.   Video sent via email from another iPhone can play as an attachment, or when dragged and dropped to the desktop, but once imported into Aperture is once again proclaimed to be an Unsupported Video Format.  
    Hoping someone out there knows how to resolve this....

    For some reason it just started to work now. Have no idea what didn't work before.

  • HT204291 Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Here are the steps for AirPlay:
    Before starting Azul from your (running iOS 5.x/6.x) home screen where have have all your apps we need to turn on mirroring
    On your iPhone 4S/5 or iPad 2 or 3, double-click the Home  Button to view your recently-used apps.
    Swipe all the way to the right to until you see the  icon.
    Note: If the icon does not appear, go to the "If AirPlay Mirroring is not visible or available on your mobile iOS device" section.
    Tap the  icon to see the list of available AirPlay devices.
    Enable AirPlay Mirroring in this menu by tapping on an available Apple TV, then sliding the Mirroring slider to ON.
    Now you should be seeing your iPad/iPhone on your TV.
    Start up Azul now and using the settings icon on the top right corner go to the option that say "TV out" ON.
    When you do that you will see an Orange screen
    Now click "Done" and play the video you want to watch and it will AirPlay

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • I have the mini display port cable to hdmi.  When I connect I can get audio but on the video I get the display auro screen and can't get my actual display to show as that is not what shows on my display.  How can I fix this?

    I have the mini display port cable to hdmi.  When I connect I can get audio but on the video I get the display auro screen and can't get my actual display to show as that is not what shows on my display.  How can I fix this?

    System Preferences>Displays
    There is a little white bar. When you have your TV connected, move the white bar to the other display. Your main desktop is now the TV screen

  • HT201210 my iphone 3gs keeps showing the screen with the connect to itunes display, and I've restored it multiple times on different computers, but everytime it finishes restoring, it shows the display again and the computer says it needs to be restored.

    my iphone 3gs keeps showing the screen with the connect to itunes display, and I've restored it multiple times on different computers, but everytime it finishes restoring, it shows the display again and the computer says it needs to be restored. can anybody help me with this?

    it was saying error code 1, i tried the things it said but none of it worked. now it is not showing an error code at all, it just keeps saying it needs to be restored.

  • I am not able to sync some videos and apps onto my iphone 3gs. it shows a sync error: 0xe8008001.i updated it but still i am getting the same sync error problem..please help.

    i am not able to sync some videos and apps onto my iphone 3gs. it shows a sync error: 0xe8008001.i updated it but still i am getting the same sync error problem..please help.
    aman

    Are you using Windows...?

  • Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    iPhone, iPad, or iPod touch not appearing in iTunes

  • My iphone has serious display issues . wil it be replaced .? i stil hav a month left in my warranty period

    my iphone5 has serious display issues . wil it be replaced .? i stil hav a month left in my warranty period.

    iPhone warranty/support, except for the EU, is limited to country of original purchase. If you're in the EU, & purchased your phone in any EU country, you're OK. Otherwise, you'll have to return the phone to Apple in the country where you originally purchased, and you can't mail the phone to Apple. You must physically deliver it.

Maybe you are looking for

  • Issue with flat file load

    Hello, I am trying to load data via flat file. we have entries in a field which starts with 0s are skipped when we load in CSV format. like i have an entry  00657, is being loaded as 657 . How can i prevent this? Thanks. Praveen

  • Book with no text

    I just finished laying out my book and looked at it in Preview before ordering. None of the text appears, although I inserted text on the cover and on every page. When I look at the book in iphoto, text is there. Anyone have any suggestions for getti

  • Vies used by 0FI_AR_4 Extractor

    Hi experts, AR standard extractor 0FI_AR 4 uses the views BKPFBSAD, , BKPF_BSID. Are  these views are generally used by R/3 for any other purpose or is it specifically created for the AR Extractor. Thanks in ADV. BN

  • Creating a RAC standby database for a single instance database

    Dear All, I have a task of migrating a 500GB single instance database to a two-node RAC database with a little downtime at hand. My migration strategy is to: 1) Create a RAC physical standby for the Single Instance database 2) Switchover to RAC stand

  • No sound in Gnome [SOLVED]

    Need help with sound. I setup Gnome and when I want check sound it says: audiotestsrc wave=sine freq=512 ! audioconvert ! audioresample ! gconfaudiosink: Internal GStreamer error: state change failed. Please file a bug at http://bugzilla.gnome.org/en