Why isn't the filename of the movie used in Video app on iPad?

I've numbered the filenames of  a series of cartoons so that they sequentially on my Windows 8 laptop.  I loaded them onto my iPad mini, but on the Video app, they do not appear under their filenames, but under another name (in the metadata?).  How can I organize the cartoons so that they appear sequentially in the Video app, as they should be in order to be understood as a cartoon series?

I can't recall the name of the program, but there are ones that you can use to edit the date and time of a file (look for properties editor). Make all the files have teh same date and time (to the second) then they should default to name order. (I'm presuming these are home made video files)

Similar Messages

  • WHY ISN'T THE MOVIE I JUST BOUGHT AUTHORIZE TO PLAY ON MY APPLE TV

    why is my apple tv not able to authorize the movie i bought from itunes on my computer?

    Hi clisch01,
    Welcome to the Support Communities!
    You may need to redownload the movie and try again:
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT2519
    If you continue to have issues playing the movie, click on this link:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    I hope this information helps ...
    -  Judy

  • Why isn't the movie I bought on my iPod Touch not showing up on iTunes?

    I purchased a video while on my iPod Touch one night, but when I got to Sync my iPod, it won't show up in the movies section on iTunes, only on my actual iPod. Is there something that makes it so that purchases on your iPod can't be transfered to iTunes or am I doing something wrong?

    Did you try to transfer it by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    It is a purchased video and not a rented video, right?  If you have a 4G iPod rentals can't be transfered to the computer.

  • Why isn't the CBO using my indexes?

    Why isn't Oracle using my indexes to join 2 big tables? I ran statistics last night before kicking off this job. I don't want to have to use hints.
    STAGING_TXN_081 has Primary Key on VSYS_STAGE_ROW_ID
    TRANSACTION has an index on STAGING_RECORD_ID
    Record counts are as follows:
    SQL> select count(*) from STAGING_TXN_081;
    COUNT(*)
    613071
    1* select distinct count(staging_record_id) from transaction
    SQL> /
    COUNT(STAGING_RECORD_ID)
    10,662,828
    1* select distinct count(*) from transaction where staging_record_id is null
    SQL> /
    COUNT(*)
    1,150,819
    So 1,150,819 / 10,662,828 = approximately 10.8% of the rows are null.
    This is the Query
    select
        st.*,
        rlog.reject_code as rlogRejectCode
    from       
        STAGING_TXN_081 st
        join transaction t
            on st.VSYS_STAGE_ROW_ID = t.STAGING_RECORD_ID
        left outer join txn_reject_log rlog
            on t.transaction_id = rlog.transaction_id
    where
        not exists
        (select 1
        from
            rl_loyalty_txn_trans rl
            join loyalty_txn lt
                on lt.loyalty_txn_id=rl.loyalty_txn_id
        where
            rl.transaction_id=t.transaction_id)
    order by st.VSYS_STAGE_ROW_ID, rlog.reject_code Here is the execution plan.
    Execution Plan
    Plan hash value: 447420266
    | Id  | Operation                     | Name                    | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |                         |     1 |   223 |       |   144K  (6)| 00:29:00 |
    |   1 |  SORT ORDER BY                |                         |     1 |   223 |       |   144K  (6)| 00:29:00 |
    |   2 |   NESTED LOOPS OUTER          |                         |     1 |   223 |       |   144K  (6)| 00:29:00 |
    |*  3 |    HASH JOIN ANTI             |                         |     1 |   203 |   121M|   144K  (6)| 00:29:00 |
    |   4 |     VIEW                      |                         |   613K|   114M|       | 84466   (7)| 00:16:54 |
    |*  5 |      HASH JOIN                |                         |   613K|    71M|    72M| 84466   (7)| 00:16:54 |
    |   6 |       TABLE ACCESS FULL | STAGING_TXN_081         |   613K|    65M|       |  3237   (5)| 00:00:39 |
    |*  7 |       TABLE ACCESS FULL | TRANSACTION             |    10M|   111M|       | 65229   (7)| 00:13:03 |
    |   8 |     VIEW                      | VW_SQ_1                 |    10M|    69M|       | 44389   (6)| 00:08:53 |
    |*  9 |      HASH JOIN                |                         |    10M|   197M|   192M| 44389   (6)| 00:08:53 |
    |  10 |       INDEX FAST FULL SCAN    | PK_LOYALTY_TXN          |    10M|    71M|       |  7314   (7)| 00:01:28 |
    |  11 |       INDEX FAST FULL SCAN    | PK_RL_LOYALTY_TXN_TRANS |    10M|   128M|       | 13947   (4)| 00:
    |  12 |    TABLE ACCESS BY INDEX ROWID| TXN_REJECT_LOG          |     1 |    20 |       |     3   (0)| 00:00:01 |
    |* 13 |     INDEX RANGE SCAN          | VIDX_309                |     1 |       |       |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("TRANSACTION_ID"="from$_subquery$_003"."TRANSACTION_ID")
       5 - access("ST"."VSYS_STAGE_ROW_ID"="T"."STAGING_RECORD_ID")
       7 - filter("T"."STAGING_RECORD_ID" IS NOT NULL)
       9 - access("RL"."LOYALTY_TXN_ID"="LT"."LOYALTY_TXN_ID")
      13 - access("T"."TRANSACTION_ID"="RLOG"."TRANSACTION_ID"(+))
    Statistics
            467  recursive calls
              0  db block gets
         324842  consistent gets
         249318  physical reads
              0  redo size
            955  bytes sent via SQL*Net to client
            240  bytes received via SQL*Net from client
              1  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              0  rows processed

    Hi,
    Take these points in consideration
    - STAGING_TXN_081 has to be full table scanned as there is NO filter on that
    - if all the matching 613071 rows from the TRANSACTION table are in different blocks, it might be equivallant to reading full TRANSACTION table (Oracle read blocks not rows)
    - if we are reading all blocks from TRANSACTION table anyway, why waste resources in reading the index blocks
    - How can we tell Oracle that, required TRANSACTION records are not located like 'each row in different block' ??? if that is really the case !!!
    - Your 'not exists' clause, how may records from TRANSACTION table will be filtered out because of that
    - If the 'not exists' will take out huge number of rows, I would suggest creating a in-line view of TRANSACTION table and the 'not exist' logic and then joining that with the STAGING*** table
    - Try to minimise the number of rows taking part in these joins (I know, I am not telling anything new here !!!)
    Cheers

  • Why isn't the movie trailer for  "WANTED"  in AppleTV Movies Trailer

    Are AppleTV owners to receive less of a selection than is at www.apple.com/trailers?

    I've certainly noticed that the list isn't as comprehensive as those on the website. Wall-E, for example, was in the AppleTV but now appears to be absent. I thought Wanted was in there earlier as well.

  • Why isn't the movie "aliens" available?

    All of the other Alien movies are available except Aliens.

    I recently asked the same question. Some movies on iTunes will be on there for a while then will be taken down. I was looking into buying 'Inception' because I thought I saw it on iTunes a while back, but unfortunently I couldn't find it. Hope this helps!

  • Whenever I go to preview a song in itunes, the song with play out for about 10 seconds and then stop. Why isn't the song previews working? How can I fix this? I tried updating my itunes and it didn't work.

    Whenever I go to preview a song in itunes, the song with play out for about 10 seconds and then stop. Why isn't the song previews working? How can I fix this? I tried updating my itunes and it didn't work. I use windows 7. Thanks!

    Try:                           
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Why isn't the radio tuning service working on itunes?

    Why isn't the radio tuning service working on itunes? I get an error message on all of our Macs.

    Maybe one of the 300+ posts about this in the last few days has the answer.  Browse the forum.
    If you wish to, you can report to Apple.
    http://www.apple.com/feedback/itunesapp.html

  • Why isn't the plugin checker working anymore?

    I check for updates to my plugins very often. The Plugin Check page has been saying that all my plugins are up to date. However, twice now I've clicked the button to check anyway, and found that a plugin was not up to date after all. Why isn't the Plugin Check page detecting when my plugins need updating?

    I don't know what you guys have been doing at Mozilla but you've ruined a decent product!

  • Why isn't the apogee working

    Downloaded new version of garage band and now my apogee isn't working

    webmail-user wrote:
    I get annoying spam in the Spam Detector from a sender that I will refer to as XYZ for this question. Using Settings/Email Settings/Filters, I added a new filter "If From Contains XYZ delete" and saved the new filter. Today I got another spam in the Spam Detector from the same XYZ sender. Why isn't the filter causing this email to be automatically deleted? Thanks for any suggestions.
    I think that the Spam Detector runs before your custom filters, and custom filters only work on the inbox folder. If Spam Detector moved it from the inbox before the filters were run, then the filter wouldn't delete it.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Why isn't the filter working?

    I get annoying spam in the Spam Detector from a sender that I will refer to as XYZ for this question. Using Settings/Email Settings/Filters, I added a new filter "If From Contains XYZ delete" and saved the new filter. Today I got another spam in the Spam Detector from the same XYZ sender. Why isn't the filter causing this email to be automatically deleted? Thanks for any suggestions.

    webmail-user wrote:
    I get annoying spam in the Spam Detector from a sender that I will refer to as XYZ for this question. Using Settings/Email Settings/Filters, I added a new filter "If From Contains XYZ delete" and saved the new filter. Today I got another spam in the Spam Detector from the same XYZ sender. Why isn't the filter causing this email to be automatically deleted? Thanks for any suggestions.
    I think that the Spam Detector runs before your custom filters, and custom filters only work on the inbox folder. If Spam Detector moved it from the inbox before the filters were run, then the filter wouldn't delete it.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Why isn't the iMessage working on my phone? Up until 1:45pm today it was fine, but now it isn't working.

    Why isn't the iMessage on my iPhone 4s working? Up until about 1:45PM today it was working just fine but now it sends it as a text message. I have tried everything in the setting but it still is not working. Any tips would be great! Thanks!

    It should be back up now, they had a system outage. Reset your iPhone.

  • Why isn't the Apple store working?

    Why isn't the Apple store working? I wanted to buy a iPad but I can't because the store isn't working. When will the store start working?

    Apple is in the midst of announcing new products and they normally take the Apple Store offline while a keynote is in progress. The Apple Store will be back up when the keynote is over. Try back in about a half an hour or so.
    Regards.

  • Why isn't the edit button not showing in my ESX24 sampler?

    why isn't the edit button not showing in my ESX24 sampler?

    Is that during installation when you see the two icons.. the one on the left looking like a Garageband guitar icon, the one on the right like the Logic Pro platimum record icon?
    Yes.. that one.. with the choice to click on which option you want/are coming from...
    p.s. I'll probably aquire a Mac Mini this fall then upgrade.... I mean repurchase!
    I think I managed to grab one of the last of the 2011 refurb'ed MMS's.... at that super low price Apple were selling them for... before they bumped it up and now, they seem to have none left at all at any price
    However, just in case, I have found this site really useful at keeping track of Apple's refurb stock... and pricing
    http://www.refurb.me/us/

  • Why won't the movie I purchased on itunes not download to my ipod?

    why won't the movie I purchased on itunes not download to my classic ipod. In ipod's summary, I checked "all" under sync for movies. I have the classic 160 gig ipod and have plenty of space. I unchecked "HD" and chose the 720 resolution. What next?

    HI moveandshaker,
    try to open itunes then drag the movies to your device.

Maybe you are looking for

  • Request For Quotation - ME41 - Item texts are not getting copied

    Hi, I created one RFQ (Request For Quotation) by copying from the existing one (through t-code ME41). But item texts are not copied. How can this issue be resolved..? In menu path ( Item --> Texts --> Adopt Text ), "Adopt Text" option is available. B

  • How to set white spaces between the fields in dataset??

    Hi all, I am writing a set on information to from infotypes to a text file. Its a fixed width file. How do set white spaces in the fields for dataset? Example: TYPES: begin of header,                 filler(40)  type c,                 id(3)        t

  • Call third party Executable file.

    How to call third party executable file from SAP as a modal. I have a drum filling system. I want to call executable file of drum system which take a weight from instrument and write a text file. After completion of this SAP will read that text file

  • Problem z rejestracją adobe photoshop cs6

    Proszę o pomoc z rejestracją photoshopa. Dzisiaj zakupiłem photoshopa cs6. Zainstalowałem, następnie założyłem konto na adobe.com. Potem zarejestrowałem produkt. Niestety na początku instalacji program nie mógł połączyc się z internetem. Wybrałem zar

  • CS3 - Licensing for this product has stopped working ...

    "You cannot use this product at this time.  You can repair the problem by uninstalling and reinstalling the product ...." Started exactly 1 year after the initial instal ... Fixed it by uninstalling, running a procedure called CS3Clean and reinstalli