Front Row Help

Hi people,
I have recently received an iSight iMac (G5, not intel) and I think front row is a great little app, but I wondered about 2 things:
1. I keep my iPod plugged in to play music instead of copying all 30Gb to the drive. Front row doesn't let me play music from it.
2. I keep movies on an external drive and would love to watch them through FR. It only looks for movies in my 'movies' folder, not anywhere else.
I am just wondering if it's like this for everyone else or I'm missing something. Does anyone know of a way around these issues or if Apple plan to change things.
Would appreciate any info or Help.
Thanks

Hi there,
Thanks for the reply. I answered one of my own questions. I managed to get the movies to play by putting alias to them in the movies folder. Still not great though because some files that play file in Quicktime preview as a black screen and play as a white one.
Was looking forward to frontrow, but it's certainly not living up to apple's usual standard. To me, anyway.
Thanks

Similar Messages

  • Photo albums in front row help

    Hi,
    I am having trouble getting my photo albums to play via front row. I have numerous albums but when i go into them in front row, it just shows up random photos from the album and roll they came from, with none of the album pages showing. The photo roll and the name of the albums is the same ie: roll called sweden, album called sweden, would that be causing a problem, ie: iphoto unsure of which photos to show? They play fine in iphoto, with all of the album pages showing, but not in front row.
    Any help would be greatly appreciated as I am getting a little frusterated!!
    Thanks,
    Mel

    Heya Brendt,
    Is the video within iTunes or just in your movies folder?
    If it is not iTunes then ignore the "itunes" portion below.
    Remove the following files to the trash (do not empty until you test for function):
    ~/library/caches
    ~/library/preferences/com.apple.itunes.plist
    ~/library/preferences/com.apple.frontrow.plist
    - Repair your permissions - > http://docs.info.apple.com/article.html?path=DiskUtility/10.5/en/duh17.html
    - Restart your computer again
    - Test and see how its working
    Hope that helps!

  • ITunes Playlist/Songs/Genres/Artists/Etc Won't Work in Front Row, HELP!!!

    I have previously owned a Powermac G4 and just recently bought an iMac Intel Duo Core, had all my files transferred from my old Mac, however all my MP3 and MP4 videos wont play when I access the iTunes By Front Row, The computer says please add songs to your playlist by buying/transferring your cd to iTunes...
    which all my songs (4,000 songs approximately) come from CDs and some purchase through the Apple Store when I had my Old Mac... I tried to purchase a couple of music in the Apple Store, however it is still not reading it in Front Row, what do I doto get this to work, so I can just use te Apple Remote to control the songs I want to play, but instead I always have to use the mouse still which makes the whole remote thing useless...
    PLEASE HELP!!! also how do I access the preferences to Front Row?? I dont see it in my System Preference... THANKS IN ADVANCE!!!
    Powermac G4 Dual 1.42 Ghz Mac OS X (10.4.4) Superdrive & Combo Drive
    Powermac G4 Dual 1.42 Ghz   Mac OS X (10.4.4)   Superdrive & Combo Drive

    The songs show up okay in iTunes itself?
    Try opening iTunes/Preferences/Advanced/General and pressing the reset for the location of the iTunes folder.
    If that doesn't work, try setting the path again.
    If that doesn't work try trashing the com.apple.frontrow.plist in User/Library/Preferences.

  • Ugh. help me if you can!  Proplem w/  front-row.  no music on slideshow

    forgive me if this is a small problem that I should be able to resolve on my own.
    When using Front Row to access a slideshow, the music that I added to the show doesn't play! Yet, when I launch the show from iPhoto, it plays. This happens on only one particular slideshow. ..I did delete the "plist" for iPhoto, but this didn't fix it (this was a sort of "fix all" tip that I found using the help menu.)
    Any suggestions? Front Row is pretty cool - I'd hate to not be able to use it.
    Thanks in advance.

    Yes, thank you, i realised that headphones with noise canceling are something i must get....but, i cant belive that the same headphones with touch and nano produce such dramatic different experience...i can hardly belive that nano has better what..sound procesor, amplifier than touch...it shouldent be that way.
    i am thinking it must have something to do with ..say latest regulations regarding volume imput in some countries or what, and i thought that it must be the program that cansels it..or so..since i have wireless on this thing.
    Message was edited by: ljut123

  • FRONT ROW TV SHOWS HELP!

    i currently record tv shows onto my mac. the problem is... when i covert the file to iTunes, i put the genre as TV SHOW and even the SETTINGS as TV SHOW. the file doesn't even show up on the TV show section of FRONT ROW. is there a way to put that video in the TV SHow section? it would really help me if you can answer this very frustrating issue with my few months old iMac.

    You didn't say how you get your TV shows into your mac. I use EyeTV so decided to play around with this. I EXPORTED a recorded TV show from EyeTV and chose the "for iTunes" format. The resulting .m4a file, I dragged into my Music folder. From there Frontrow would display it but when I played it (using the Music selection in Frontrow and then looking under "Songs") I only got the sound, no video.
    Next I re-EXPORTED from EyeTV, this time in "for iMovie" format and it produced a folder. Inside that folder was another folder labelled "Media" and within that was a file "Clip 01.dv". I dragged that to my Movies folder. From there Frontrow would play it (sound and video) using the Videos selection and then looking under "Movies". Quality wasn't as great as I hoped, but maybe when exporting, you could try one of the other formats in the pulldown. (I tried the Quicktime Movie choice with no obvious improvment but perhaps others would give different results.

  • Problem with front row, please help!

    I got a year old MBP 15" which I updated to leopard, and it works generally fine, except for the fact that when using front row and leaving it playing music for about 5 minutes idle, it freezes, goes to blank screen, but still plays the playlist it was set on, but when I use the remote control, or press keys, it keeps frozen, the only way to quit is to force power off.
    Please help me, as I really like Front Row and my MBP is my hub for playing music in reunions.
    Thanks in advance

    I have (hopefully) found a solution to my part of this problem. I was getting the ClassCastExceptions on any page with a <jbo:row> tag after doing a failed DML action. I have tested this with the delete event. (btw, I am using jdev9.0.3.3 w/ BC4J/JSP) Before what I was doing was this:
    <% try { %>
    <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    If I removed the try/catch block everything worked fine. Unfortunatlely, I need to try/catch block here. To work around the problem I changed the code to this:
    <% Row rowDelete = ds.getRowFromKey(params.getParameter("jboRowKey")); %>
    <% try { %>
    <%
    rowDelete.remove();
    %>
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    The second bit of code does the same thing (but it doesn't use a bean like I think <jbo:Row> does) and it doesn't cause the ClassCastError on subsequent errors.
    I really hope this helps someone else because it took me forever to get a workaround!
    ~Rob Lundeen

  • Front Row slideshow Help!

    Is there any way to change the default '3 seconds' used for Front Row slideshows? I want to do this without specifically creating a slideshow in iPhoto to change the slide time.
    As a related matter, can the default slideshow settings be changed for iPhoto also?
    My Mom has an iMac and I'd like her to be able to use Front Row to view her iPhoto pics. But 3 seconds is way too fast for her sight, so I need to figure out a fix for this!
    Thanks in advance for your help!

    Is there any way to change the default '3 seconds' used for Front Row slideshows? I want to do this without specifically creating a slideshow in iPhoto to change the slide time.
    As a related matter, can the default slideshow settings be changed for iPhoto also?
    My Mom has an iMac and I'd like her to be able to use Front Row to view her iPhoto pics. But 3 seconds is way too fast for her sight, so I need to figure out a fix for this!
    Thanks in advance for your help!

  • Front Row hosed!@#$% iT7 & QT7 WipeOut??????? Help

    Upgraded and Front Row is totally screwed up.
    Says I have no TV shows, but I have over 200,
    Front Row itunes choice plays sound from TV shows with a list of shows

    QT Player can play only M1A a.k.a. MP2 audio in
    MPEGs.
    MPEG Streamclip can play also AC3 and PCM audio -- it
    can also convert them to M1A audio that QT Player can
    understand.
    Thank you, it is very helpful information, because at least Streamclip is universal binary! But... it is not an absolute solution, because Streamclip is a converter - so it converts video, so it takes a lot of processor time...
    If it is just a QuickTime extension...
    However - Thanks!

  • Front Row Music Help

    The simple problem is, when I open Front Row it says that the track cannot be played. This only happens with some songs i.e. Dragonforce but works perfectly with others i.e. Muse.
    Just for the record I have just moved over from a PC and my iTunes songs with it.

    Welcome to the Apple Discussions!
    Front Row is reading your iTunes library. Do the songs you're having trouble with play fine directly in iTunes?
    -Doug

  • Help with Front Row...

    I just received my refurbished imac replacement.It is running great,i added more memory up to 2gb. My question is i dont have Front Row on this replacement it is the same as the imac i sent back 20in. 2.16ghz 2gb ram 250gb hd how do i install this do i have to re-install everything?

    acidpope
    Here's everything you'll need to troubleshoot Front Row and your Remote.
    1) Keyboard shortcuts for Front Row
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/cdb_frkybd.html
    2) Troubleshooting the Apple Remote
    http://docs.info.apple.com/article.html?artnum=302549
    3) Pairing your Apple Remote with your computer
    http://docs.info.apple.com/article.html?artnum=302545
    4) How to replace the Apple Remote battery
    http://docs.info.apple.com/article.html?artnum=302543
    Dennis
    17" iMac Intel Core Duo 1.5GB Ram   Mac OS X (10.4.8)   Maxtor 300GB FireWire 2G Nano

  • Hi ! guys i've recently upgraded my macbook pro from snow leopard to lion.....now my front row app. is missing........is this a lion upgrade or a error.....pls help!!

    i've recently upgraded my mac book's os from snow leoopard to lion.......nd i've noticed that front row app. is missing........i miss its liquid graphics of displaying entertainment stuff.........is this an os upgrade or error ....

    No. There is no Front Row as part of Lion. But you might like to visit: Install Front Row on Lion.

  • Front row cannot play video on my shared network? not recognized? HELP!

    When i launch my front row on my macbook it informs me that there are no videos being shared on my mini. But when i review the mini inside itunes i clearly see all the content and can play it. Any ideas why itunes and front row would not work together? It worked fine in the past, but the last two upgrades knocked it out. Both units are fully updated.

    That is strange, it sounds like it should be working. I might try to create a new user with the Accounts System Preferences on the MacBook, log out and log in as the new user. Can the new user find the shared videos in Front Row? If not, then you have some kind of system-wide problem. If they can find the shared videos, then your original user has a preference or configuration issue.
    -Doug

  • How can I move Front Row to a different display?

    I love using Front Row with my MacBook, but I'd love it even more if I could move Front Row from my main display on my laptop onto my second display--a TV screen. I own a Apple mini-DVI to RCA & S-video adapter, and I use this to connect to my TV screen. Obviously, I can get Front Row on my TV screen by turning on Mirror Displays or setting the TV screen as my main screen (dragging the menu bar icon to the second display in the Displays system preference), but both these methods require me to sacrifice use of my desktop on my laptop while I use Front Row.
    Simply put, can I possibly (even sneakily) move Front Row to my second display? Thanks for any help.

    Welcome to the Apple Discussions!
    Unfortunately, since Front Row has no preferences you can actually change, there's no way to change the screen now. (Besides the work arounds you've already discovered.) I would send Apple some Mac OS X feedback (since Front Row is considered part of OS X, not a stand-alone application) and let them know you'd like to be able specify the screen. You're not the first person here to ask for that option.
    http://www.apple.com/macosx/feedback/
    -Doug

  • Why does front row keep on pausing playback?

    I'm using my LCD tv as an extended display and as the main desktop. I freshly reinstalled SL and updated it to 10.6.5. Front row keeps on pausing the playback randomly. Note that its not stuttering. As soon as I hit Play on my apple remote, it resumes playback.
    any guesses?

    I realized that every time I open front row empty "iTunes Music" folder is created even I have "iTunes Media" folder in use. Anyone have any idea how to solve this? I tried to remove Frontrow.plist files but that does not help. I think this could be related to this issue since it is not happening on my other mac which is not having any front row problems...
    -Teemu

  • Front row in Lion 10.7 issue (-70012) and video_ts not playing issue -solved

    Hi all,
    thought I just post my solution to the front row issues in 10.7. I looked for a solution for days, and when I found it, I thought it would make other peoples live easier if I combine everything in one post.
    I actually had a couple of issues:
    PROBLEM:
    first front row stopped playing VIDEO_TS files in 10.6.
    the second issue occurred when I thought upgrading to 10.7 would solve the issue; Front row still couldn't play the VIDEO_TS, because FRONT ROW was gone...
    SYMPTOMS:
    both issues always showed the same symptoms:
    when a dvd-back folder was selected, front row would show a black screen, and then, caused by my frantic pushing the ESC button, front row would give me the dvd player not valid -70012 error.
    CAUSE:
    so what happened? I chose to buy my MBP 17" with the smallest HDD (yep sorry, was cheap-s-ing). Then later that year, I decided to buy the HDD caddy and switch my internal superdrive for a SSD. I ended up placing the original HDD in the hdd caddy, which I then put in the Superdrive's slot, and I placed the SSD in the slot where the original HDD was residing first. I now had a MBP 17" late 2011, with vertex3 SSD. I forgot, I also put in 16 GB, replacing the 8 GB.
    So, when I back-upped all my favorite DVDs as VIDEO_TS files, (no I did not download dvds through usenet), grabbed the popcorn, and started Front Row, the disappointment began. No VIDEO_TS file would play, always the same -70012 error message. So after a lot of internet research I stumbled upon a guy who said: yeah, you have to upgrade to 10.7. After the upgrade my FRONT ROW was gone.
    SOLUTIONS:
    In 10.6:
    As Apple's DVD player is always looking for the internal dvd player as a prerequisite to start, Front Row, which uses Apple's DVD player as video player, will throw up the -70012 error. 'Cause it finds the HDD in the HDD Caddy instead of the SuperDrive. So in 10.6 (and in 10.7 also) you can use the following solution:
    (I got this solution partial from http://reviews.cnet.com/8301-13727_7-20070591-263.html)
    1: modify the DVDPlayback framework that the DVD Player uses so that it will recognize external drive as a valid DVD playback device. (The HDD Caddy came with an external casing for the SuperDrive)
    2: download a hex editor (I used Hexedit 220 from http://hexedit.sourceforge.net/ )
    3: Go to the folder /System/Library/Frameworks/ and back up the file "DVDPlayback.framework."
    4: Open Hexedit_220 and use it to open the following file:/System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback.
    5: Using the editor's find&replace through COMMAND-F, replace "Internal" with the text "External" and save the file. Note that Hexedit also saves a backup automatically.
    6: Close the file once saved, and then run a permissions fix on the boot drive using Disk Utility. Then restart the system and you should now be able to play DVDs off the external drive using DVD Player. That is, If you use an external dvd player (which I don't use).
    7: I inserted a very small USB stick in the MBP with no data on it, and Front Row and Apple DVD Player accepted this. I could now play my backupped DVDs.
    ofcourse, I still wanted to upgrade to 10.7, so here's the solution to 10.7
    10.7:
    upgrading was a simple click with the mouse, worked like a charm, Office still worked, and some minor updates installed through software.
    Front Row however, gone...
    I used the steps outlined in http://osxdaily.com/2011/07/21/front-row-for-mac-os-x-lion/ to get Front Row back:
    - first get the package from Madhatter: Download the free package installer by MacHatter
    - install, or customize the install
    - all done.
    Then I used the steps from step 3 through 7 outlined above in solution 10.6.
    Catch:
    So I did not find a solution to fooling the DVD Player / Front Row with the USB stick. So everytime I watch VIDEO_TS in Front Row the USB stick must be inserted. But, the good news, I can still use my remote control for something.
    Hope I helped some guys out there with this solution.
    Regards,
    Johnno

    The issue has previously hit Apple TV owners. I think people came to the conclusion that it was a HDMI handshake problem. Basically the process where the device and TV greet each other, make up some rules about communicationg and what their secret key is and so on.
    I haven't tried this yet, but my local service center says that basically I can do one of two things:
    - Downgrade to 10.7 and then download the 10.7.1 update from Apples website. To do this without having a Mac OS X Lion disc, you can hold down CMD + R when the computer boots to be able to access the recovery partition on newer Macs that come without the OS disc.
    or..
    - Put something in between the computer and TV. For example, if you're using an amplifier as a part of your home theather set up, this will probably work. The service guy said he has his Mini connected to the amplifier, which in turn is connected to speakers and a projector. The inverted colors still appear, but only once per night (i.e. after the first problem is reset by resetting the link then it's fine).
    For now, I'll do my little dance of changing the source on the TV from HDMI 1 to HDMI 2 and then back again to reset the link... But, I'll probably try downgrading in a few days.

Maybe you are looking for

  • Physical and Logical Standby

    Hi I just wanted to know can i have one Physical and One Logical Standby for a Single Primary Database. Is there any precautions and steps to be followed . Thanks

  • OWSM install problems

    Hi! I run into following problem. I have 2 Windows XP PC-s, on one SOA Suite 10.1.3.1, on the other PC I Installed with the same installer only the J2EE Server and HTTP Server. The PC with SOA suite uses the WS-es deployed on the other PC. This works

  • Pacman tries to satisfy dependency of an ignored package, and fails...

    sudo pacman -Suy :: Synchronizing package databases... core is up to date extra is up to date community is up to date --> Searching for upgradable repo packages... :: Starting full system upgrade... warning: awesome: ignoring package upgrade (3.3.4-1

  • WMF/EMF Files Illustrator CS4

    I truly hope this helps someone else out! After much frustration, I have finally solved the problems I was having with: A.      Viewing  WMF/EMF files on a Windows Vista pc. B.      Manipulating WMF/EMF files in Illustrator CS4. Viewing WMF/EMF Files

  • Editable Field in formate

    Hi. I have one formate in that some part should be editable by enduser How it can be done? help me out...