Searching for Films

Hi
Ok, maybe this is a stupid question but I can't seem to work this out.  I have an archive of films on an external drive, synced into iTunes that I stream on my Apple TV 3 from the 'Computers' tab.  Is there anyway I can search through this on the TV?  ie. by Director, or actor etc (they all have the appropriate meta data in them).
For example with TV shows I just have a list of 100s alphabetically, not even listed by genre, and it's a hassle scrolling throw a few hundred each time if I want to watch a show starting with 'W.'
Any ideas, help etc.
Cheers

Many have complained about the way iTunes library content is listed on the Apple TV. It was much better on the Apple TV 1, but that didn't use iOS, so it would seem it's tied to iOS. It's been like that since the Apple TV was first released, so I'm inclined to suggest you don't hold your breath for any changes.
If you have any suggestions that you think might enhance the Apple TV you can send Apple your feedback here 

Similar Messages

  • Searching for strings in a txt file

    I am writing a program based on the six degrees of seperation theory.
    Basically I have been given a (very large) txt file from the imdb with a list of all the films written in it.
    The text in the document is written like this:
    'Tis Autumn: The Search for Jackie Paris (2006)/Paris, Jackie/Moody, James (IV)/Bogdanovich, Peter/Vera, Billy/Ellison, Harlan/Newman, Barry/Whaley, Frank/Murphy, Mark (X)/Tosches, Nick (I)/Moss, Anne Marie
    (Desire) (2006)/Ruggieri, Elio/Micijevic, Irena
    .45 (2006)/Dorff, Stephen/Laresca, Vincent/Eddis, Tim/Bergschneider, Conrad/Campbell, Shawn (II)/Macfadyen, Angus/John, Suresh/Munch, Tony/Tyler, Aisha/Augustson, Nola/Greenhalgh, Dawn/Strange, Sarah/Jovovich, Milla/Hawtrey, Kay
    10 Items or Less (2006)/Ruiz, Hector Atreyu/Torres, Emiliano (II)/Parsons, Jim (II)/Freeman, Morgan (I)/Pallana, Kumar/Cannavale, Bobby/Nam, Leonardo/Hill, Jonah/Vega, Paz/Echols, Jennifer/Dudek, Anne/Berardi, Alexandra
    10 MPH (2006)/Weeks, Hunter/Armstrong, Pat (II)/Caldwell, Josh/Waisman, Alon/Keough, Johnathan F./Weeks, Gannon
    10 Tricks (2006)/Cruz, Raymond/Swetland, Paul/Selznick, Albie/Hennings, Sam/Gleason, Richard/Leake, Damien/Skipp, Beth/Ishibashi, Brittany/Thompson, Lea (I)/Jinaro, Jossara/Brink, Molly
    1001 Nights (2006)/Wright, Jeffrey (I)
    10th & Wolf (2006)/Lee, Tommy (VI)/Renfro, Brad/Ligato, Johnny/De Laurentiis, Igor/Luke Jr., Tony/Mihok, Dash/Garito, Ken/Capodice, John/Dennehy, Brian/Gullion, Jesse/Salvi, Francesco (I)/Cordek, Frank/Marsden, James (I)/Bernard, Aaron/Brennan, Patrick (VII)/O'Rourke, Ben/Gallo, Billy/Heaphy, James/Stragand, Dave/Vellozzi, Sonny/Pistone, Joe (I)/Morse, David (III)/Landis, Pete/Cain, Atticus/Trevelino, Dan/Demme, Larry/Sisto, Frank/Rosenbaum, Paul/Grimaldi, James (I)/Ribisi, Giovanni/Hopper, Dennis/Devon, Tony/Sigismondi, Barry/Kilmer, Val/Marinelli, Sonny/Cacia, Joseph/Rossi, Leo (II)/Tott, Jeffrey/Wawrzyniak, Aaron/Boombotze, Joey/Marie, Corina/Arvie, Michilline/Warren, Lesley Ann/De Laurentiis, Veronica/Moresco, Amanda/Boecker, Margot/Rossi, Rose/Latimore, Meritt/Dunlap, Doreen/Perabo, Piper/Horrell, Nickole/Sonnichsen, Ingrid
    11 Minutes Ago (2006)/Irving, Len/Welzbacher, Craig/Michaels, Ian/Dahl, Evan Lee/Gebert, Bob/Juuso, Jeremy/Hope, Trip/Green-Gaber, Renata/Dawn, Turiya/Reneau, Taryn/M
    Thats just 2 lines!
    what the program will do is take in a name (from a gui) of an actor/actress and find the smallest connection to a famous actor.
    So first things first, my idea of thinking is to search the file for K.E.V.I.N. B.A.C.O.N and all his films, and safe them into an array. Then do another search for films from the actor that the user entered at the gui. then find the shortest possible connection to both stars.
    my code for the search part of the program
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.File;
    import java.io.FileNotFoundException;
    public class FileSearch {
         File aFile = new File("cast.06.txt");     
         FileInputStream inFile = null;
         String actor = "surname, forename"; // the person who will be the centre point e.g. kevin.bacon.
           //get the result of the actor from the gui will go here.
         public void openFilm()
              try
                  inFile = new FileInputStream(aFile);     
              catch(FileNotFoundException e)
                   System.out.println("Error");
    }The problem I have is that I can't work out how to search the txt file for a specific string/s and save them into an array. (I'm not sure if this is the best way to go about it or not at this stage).
    So whats the best way to search for an actor from that file and save the film title and the year of release?
    Hope this makes sense? what I hope the final program will be like is like this http://oracleofbacon.org/

    I went away and looked at regular expressions and this is what I came up with
    public class NameSearch{
         public static void main(String[] args)
              NameSearch ns = new NameSearch();
              ns.runIt();
         public void runIt()
              java.util.Scanner fileScan = null;
              try{
                   fileScan = new java.util.Scanner(new java.io.File("imdb.txt"));
              }catch(java.io.FileNotFoundException e)
                   e.printStackTrace();
                   System.exit(0);
              String token = null;
              String actor = "Surname, Forename";
    //real name will go in actor, left it like that for example
              while(fileScan.hasNext()){
                   token = fileScan.next();
                   Pattern pattern = Pattern.compile(actor);
                   Matcher m = pattern.matcher(token);
                   while(m.find())
                        System.out.println(m.start() + m.end());
    }This by any means not finished, I'm just trying to get to grips with regualr expressions. But when I run the program it doesn't return anything, from what I've tried to work out is it should return actor x amount of times they appear in the file. But when I run it nothing comes back (the actors name is in the text file) so I'm not too sure what I'm doing wrong, any suggestion please

  • When I connect to the iTunes store from my ipad 1 and go to either films or tv the app crashes. If i try to search for a tv programme the app crashes. I am using latest iOS

    When I use the iTunes app to connect to the store, the app crashes when I try to search for a tv programme or film. I can buy stuff that is advertised but searching causes a crash. The same has happened with today's 12 days of Christmas. When i try to download House, the app crashes. Same with day 1, Coldplay, app crashed, missed the offer.

    Thanks for your help. A simple power off/on worked and cured the problem. I'm so used to the iPad being on all the time I forgot the basics.

  • Itunes: How to search for korean (or other countries) movies within foreign film category

    Within foreign films category in latest version of itunes, is it possible to search for sub categories, for example Korean or Japanese films? (on either ipad or PC)

    For some reason it won't show where the same words occur in other scripts. Alternatively, how do you view scripts by clicking on the score? For example, the startmovie script or setup related scripts at the beginning of the movie, currently, I'm accessing finding what each script does by using the trace function in the message window. But are these scripts or related frame scripts visible from clicking somewhere on the score as well?

  • QT movies won't open, just search for clip, and then error 128

    I have filmed a lot of digital movies when I was an undergraduate studying film and I exported them all as quicktime movies to save in my computer; however, for some unknown reason, whenever I try to re-watch those movies, QT searches for "Clip 01" or whatever and says that it cannot open the movie without this clip, and then gives me "error (-128)." What is up with this? I thought once I exported the film as a QT .mov that would be the only file I needed. I don't understand why it needs to search for a clip. Thanks for anyones help, I'm trying to piece together a demo reel and now I don't have access to about 75% of my work.
    G4 Desktop   Mac OS X (10.4.4)   Dual Processor 1.25 & 2 GB of RAM

    When you "Save as" QuickTime Movie you get two choices... Reference movie and Self contained.
    Self contained creates a movie with all needed media (video and audio clips) within the .mov file.
    Reference movie creates a very small file that tells QuickTime where to find the clips to play and does not copy those clips into the mov file.

  • Why cant i search for artists in my itunes search area?

    why cant i search for music/artists in my itunes search area when i'm logged on to itunes?

    I should be more specific, I live in the USA, Type Disney into the search and then go to movies, you will see a list of Disney movies.
    BUT that is not all the Disney films on Itunes.
    The Majority of Disney films that are available on Itunes do not show up when searching the word Disney.
    You have to look them up individualy by name. For Example: Darby O'Gill and the little People, Pocahantas 2, Atlantis: Milo's return, Ducktales the Movie, The Sword in the Stone, The Rescuers Down Under.
    All of these and MANY more do not come up when you search for Disney or Disney movies.
    Why?

  • FCP Searching for time code break on capture

    Hi. I've been filming a few live events and capturing fine. This morning i went to follow the same procedure and Final cut Batch capture keeps searching for a timecode evert couple of minutes. It's looking for a break that isnt there. This means my footage is sticking.
    Any suggestions?

    Do you have a tape that you captured successfully in the past?  If so, try and capture from it.  If it captures properly, the new tape with the problem may be defective.  
    You might try getting a head cleaning tape and see if that helps. 
    What kind of drive are you capturing to?  You might try another drive.   Make sure you have plenty of empty space on all drives connected to the computer including the computer's startup drive.
    Do you have any antivirus software installed on the computer?  if so, turn it off or uninstall it. 
    Have you installed any software or system hacks since you last successfully captured material from this camera?
    You might run diskrepair and disk warrior (if you've got it) on all drives.  You might repair permissions on the startup drive.  You might try deleting fcp preferences.

  • I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac.  Any suggestions?

    I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac. The drive is not listed in Disk Utility.  Any suggestions?

    Is the computer in you equipment line:
    Dual Core Intel Xenon
    (which is not a PowerMac but a Mac Pro) the one you are asking about, or do you have an older PowerMac?
    If a Mac Pro, their forums are here:
    Mac Pro
    and, as Mac Pros have a totally different architecture from the pre-2005 Macs this forum covers, you may not have the same issues that can affect the older models. If someone didn't notice your equipment line, you could get advice that doesn't apply.
    If you really have a pre-2005 PowerMac, read on.
    If the stubborn external is USB and does not have its own power brick (i.e., it gets power only from the computer's UBS ports--"bus powered"), it may not be getting enough power. As electric motors age, they can demand more power than when new, and the power available on any USB port is limited.
    The typical workabouts to making a computer recognize an aging, bus-powered USB drive are:
    Get a powered USB hub (has its own power brick
    Get a "Y" USB cable: 1 Meter USB 2.0 A to 5 Pin Mini B Cable - Auxiliary USB "Y" Power Design for external hard drives.
    The second gets power from two USB ports on the computer and often that's enough.
    Remember that the USB ports on your keyboard seldom provide enough power even for a thumb drive, so be sure to use the USB ports on the back of the computer.

  • While trying to install Creative cloud for my PC all i keep getting is Searching for Server

    Searching for Server    that is all i get when trying to install creative cloud on my pC   and YES i am running Windows 7 and have high speed internet service.  HELP  

    Sweetpea5154 you may be facing a connection error.  Is the computer you are utilizing on a managed network?  If not then please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to resolve connection errors.

  • Windows 8 hangs or freezes whenever search for anything

    Rebuild the Index
    Whenever you try to search for something in windows, its indexing which find the things quickly and brings that to you.If indexing is disabled or corrupt computer won't be able to search and will not present the search results.Windows uses the index to perform very fast searches on your computer.
    The index requires almost no maintenance. However, if the index can't find a file that you know exists in an indexed location, you might need to rebuild the index. Rebuilding the index can take several hours, and searches might be incomplete until the index is fully rebuilt.
    Go to Control panel and open Indexing Options.
    Click the Advanced button at the bottom of the Indexing Options window. This displays a new window titled Advanced Options.
    Click the Index Settings tab if it isn’t selected already.
    Click the Rebuild button to delete and rebuild the file index.
    Click OK to confirm.
    For more information on Advance indexing option you can read article on microsoft's website http://windows.microsoft.com/en-in/windows7/change​-advanced-indexing-options
    Step 2 will always fix this issue but just in case its not helpful try the next Step 3.
    3.Check the Registry Value
    Manual Fix 1 
    1. Press Windows Key + R to get the run dialogue box.
    2. Type "regedit.exe" in the box and hit enter.
    3. Using the box on the left, navigate to the following directory:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
    4. We need to change a registry called "Start_SearchFiles" to a value of 2. If you are like me, yours is already 2. We need to reset this so what we are going to do it change it to 0, then back to 2.
    5. Double-click Start_SearchFiles or right-click and select "Modify" to get the edit box. Change the number under "Value data" to 0 then click "Ok".
    6. Repeat step 5, changing the value back to 2.
    7. Restart your computer.
    Manual Fix 2
    Using the above information navigate to the following directory: Read More on http://bookingtohosting.blogspot.com/2015/04/windo​ws-8-hangs-or-freezes-whenever.html

    Hi,
    Regarding current information we can't say that it related to this exe file.
    We need to use Clean boot mode and Safe mode to test the results:
    Please first restart the Windows in Clean boot and see if the issue still persists after reboot:
    How to perform a clean boot
    http://support.microsoft.com/kb/929135
    If the issue doesn’t appear, you can determine which one can be the cause by using dichotomy in MSconfig. Checking on half of Non-Microsoft service and restart, determining which half of the services cause the issue and repeating to check half of the problematic
    half services.
    If the issue still persists in Clean boot mode, please test in Safe mode.
    Let me know the results in Safe mode.
    If we cannot identify this issue in Clean boot and safe mode, please help to collect the boot trace and let's see what cause this issue:
    Windows Performance Toolkit: Simple Boot Logging
    http://www.autoitconsulting.com/site/performance/windows-performance-toolkit-simple-boot-logging/
    You can upload the etl file from this tool for our research.
    Kate Li
    TechNet Community Support

  • Iphone 5s - Calls Breaking Up - Searching for Network

    Hello.
    I recently started using my new Iphone 5s and I have a big problem.
    Every call I get or make, the call suddenly breaks up during the first minute. My network reception bar drops to 1 bar, then says "searching..." briefly, and then it comes back. But the call is already gone. There are no problems when I remake the call. But I get this problem with every single call that I make. I've never had a problem with my Iphone 4 for 2 years, so I don't think it's about my carrier. Anyone else experiencing the same problem? Any suggestions?

    I have the same problem. My phone keeps "Searching..." for network, and if I don't fix it, it can go on like that for days. I tried several solutions, Reset Network Settings, Reset All Settings, hard reset, and finally I restored my iphone to factory settings then re installed ios 8.1.3, which I had trouble doing because my phone took 4 days to finally have a successful restore. I am not sure if this is about updating to ios 8.1.3, but all of this happened to my iphone 5s a few days after updating. Anyway, after my phone had miraculously went thru with the restore, my phone was back to the way it was, but after 2 days, it went back to searching for network again whenever I get to an area with poor signal. I put phone in Airplane mode for about 10-20 mins, then turn off Airplane mode to check if signal is back. If it still  doesnt, I reset network settings, then airplane mode again. I have not yet used reset all settings since my iPhone restore. I tried to google and see if this really is an ios problem or just my case, then I came across your question. The latest fix I did just this morning is I plugged my phone to my wall charger and tried to dial a number and pressing the green call button several times until the signal went back. That was by far the simplest solution I have discovered, but I still can't say if that IS the solution because it was just my first time to do it. I advise you not to restore your phone because in my case, mine took 4 days to until i was able to use my phone again since restoring wasn't working. You don't want to end up with a dead brick phone. With mine,  I just kept trying until it went thru and I don't think I will be doing the restore all over again because of what happened.  I hope this is just a problem with ios update and that apple will soon find a permanent fix to this.

  • My podcast has been accepted by apple and has been working on the itunes store for a few years until recently. If I search for it I can see some of the episodes but no matter which store I am in I am told I can't few the episodes in my current store

    I have a podcast that has been submitted to itunes a few years back that has been working just fine. The person updating it broke it a few months back, I have fixed the error and reformatted it but the podcast still doesn't work. If I go in itunes and choose to open stream and connect to the podcast URL there, then it works just fine, but If I search for it in the itunes store (search: Jubilee Community Church) then a couple of the episodes show up (see The Art of Marriage by Stephen van Rhyn) but if I click on any of them it just tells me that my podcast is not available in the current store. But I submitted it from the UK store and it is not even available on that store. I have send numerous emails to Apple Support but they have been incredibly unhelpful. I hoped it would update overtime and start working again but its been a month and still nothing, I can't get hold of anyone technical from itunes support to reload my podcast or tell me whats wrong, I can't even resubmit my podcast because it's already been submitted and therefore won't allow me too. I've run out of options, any help would be appreciated!

    A 4th gen iPod can not be upgraded to iOS 8. 7.0.2 is the high version it can run.

  • Why isn't my iTunes store loading properly? It lists everything in text without images, and I can't seem to access the store when I try to search for music or movies etc.

    Why isn't my iTunes store loading properly? It lists everything in text without images, and I can't seem to access the store when I try to search for music or movies etc.

    1) The best way to relocate the iTunes library folder is to move the entire iTunes folder with all subfolders to the new path, then press and hold down shift as start iTunes and keep holding until prompted to choose a library, then browse to the relocated folder and open the file iTunes Library.itl inside it.
    If you've done something different then provide some more details about what is where and I should be able to help.
    2) Purchases on the device should automatically transfer to a Purchased on <DeviceName> playlist, but it my depend a bit on whether automatic iCloud downloads are enabled. If there is a cloudy link then the transfer might not happen. You can use File > Devices > Transfer Purchases. In iTunes you should also check out iTunes Store > Quick Links > Purchased > Music > Not on this computer.
    3) Backup the device, then immediately restore it. In some cases you need to add a restore as new device into that equation. Obbviously not to be attempted until you're sure all your media is in your library. See Recover your iTunes library from your iPod or iOS device should it be needed.
    4) I believe there is complimentary 1 incident 90-day support with hardware purchases, but no free software support for iTunes itself. AppleCare gets you a different level of support.
    tt2

  • In Pages document, how do I search for word and view its frequency and page numbers in a sidebar?

    I have a long document and I want to be able to search for certain key words and phrases, and then see how many times they appear in the document and exactly where.  How do I conduct this sort of search and viewing?  In the past, in Pages and Word, I've been able to view my "finds" in a sidebar but I can't figure out how to activate that service anymore.
    Thanks!

    Here is a word frequency concordance Automator Service that works in both versions of Pages. It does not present a page number reference. It is by descending count, and alphabetically, within the repetitive counts as shown in the image here. In any document, you select the text to process, then Menu > Application Name > Services > Frequency. The Service will open TextEdit with the n-pages of scrollable results. It is 16 pt Helvetica Neue for legibility.
    Here is the code:
    on run {input, parameters}
         try
              set mySelection to input as text
              set formatted_result to concordance(mySelection)
              if formatted_result is not null then
                   set textHeading to "Word Frequency List"
                   tell application "TextEdit"
                   activate
                         set NewDoc to make new document with properties {name:"Concordance"}
                         make new paragraph at beginning of text of NewDoc with data textHeading & return
                         make new paragraph at end of text of NewDoc with data formatted_result
                         tell text of NewDoc
                               set font to "Helvetica Neue"
                               set size to 16
                               set color of paragraph 1 to {0, 0, 65535}
                         end tell
                        end tell
              else
                        display dialog with title ¬
                         "No input selected" with icon stop ¬
                          giving up after 15
              end if
         on error errmsg number errnum
                    display alert ¬
                               "AppleScript Error" message errmsg & "[" & errnum & "]" as critical ¬
                                  giving up after 30
         end try
         return input
    end run
    on concordance(mySelection)
    -- Use Ruby to count word frequency and alphabetically sort words
        set rb to ¬
        "selected = String.new\nfreqs = Hash.new(0)\nselected = ARGV.join('  ').gsub(/[,.]/, \"\")\n
         words = selected.split(/[^\\w-]+/)\nwords.each { |word| freqs[word] += 1 }\n
         freqs_sorted = freqs.sort do |a,b|\n\t
         a.last == b.last ? a.first <=> b.first : b.last <=> a.last\nend\n
         freqs_sorted.each { |k,v| printf \"[ %8s ]          %s\", v, k }"
        do shell script "/usr/bin/ruby -e " & rb's quoted form & space & mySelection's quoted form
    end concordance
    Launch /Applications/Automator and choose New Document, then click the Service icon, and then select the Choose button.
    On the left, you will have a list of Libraries from which to choose workflow items. Find Library > Utilities. In the adjacent column, locate the Run Applescript workflow. Click on it, then drag and drop it in the large workflow window to your right.
    At the top, you can select Service receives text in any application. Leave Output replaces selected text unchecked.
    In your Run AppleScript workflow window, you will see AppleScript boilerplate. Click on it and press command+A, then backspace to delete this content. Copy and paste the above code into this Run AppleScript workflow window. Press the Run button in Automator's upper right corner. If (and it should) a TextEdit window pops up, you are good, and you want to press File > Save. A dialog box will pop-up where you can name your Service. I called my Frequency, you may wish to call it something else. Once you have save it, you can exit Automator. Services are deposited in yourlogin directory/Library/Services.
    If you have a Pages document open with text, either select it, or command+a to select the entire document. Now, you select your Service via Pages > Services > Frequency. This will now pop-up a new TextEdit document with the results. If you want to save this new document, you must use option+File to Save as...

  • Jabber - Search for phone Numbers (extensions)

    Hi there,
    as on the old Cisco Personal Communicator there was a possibillity to search for extension numbers on the search field. If I enter an extension number on the Jabber Client on Windows, there is no Name and Picture shown from this employee. For example, if you type in 1234 in the field it just says "call 1234" but I want so find the employee which extension is 1234.
    On the jabber-config.xml I already tryed the UDS and EDI method.
    So I'm just asking if there is a general problem with this function or if this is just an configuration issue. If it would help, I'll post the jabber-config.xml.
    Thanks for a reply.
    regards
    Marc

    Hi Marc,
    Currently this is not supported. It is tententively planned for 9.4 which has no current release date.
    Thanks,
    - Colin

Maybe you are looking for

  • X61 - Can't get sysprep'ed image to boot on it.

    Scenario I am the senior desktop analyst in the offices of an international business travel company. We recently won the Lenovo account and the employee of our company that manages the account needs to use a Lenovo laptop exclusively so I was sent a

  • How do i restore my old phones Backup on my new phone

    I just had my phone replaced and cannot figure out how to restore all my information that is (or atleast should be) on backup on my computer?

  • Credit Note Creation for Invoice of previous sytem

    Hi to everyone, An invoice was created on the previous system (Pastel) and now the client is returning the goods. How would I account for this return? A service credit Note? How to re integrate the stock (goods are coming back in stock) Thanks Kentis

  • Error 5006:  can't have more than one externally visible definition

    Hi I'm getting this error: 5006: An ActionScript file can not have more than one externally visible definition: AMReports, playSound. playSound is a function in my main document class The error occured after I added a MovieClip and FLV component to m

  • In Adobe Forms where to write to write Program lines

    Hi All, In Adobe Interactive Forms , in SFP transaction where do we write Program lines. In smar forms , roight clik flow logic and program lines creates an area for program line, what is the euqualiant to this in adobe forms. Please help me out on t