Read from a hard drive

I have a passport hard drive. Can a ipod be hooked up to one and get movies and songs off it?

The ipod would have to be connected to itunes.
You sync music from itunes to the ipod.

Similar Messages

  • Deleted iTunes Media off the Mac, Can i now get it to read from my Hard Drive ?

    I started looking into this as my Mac was using Roughly 500 of 750 gig on Music. But I've only recently noticed that this is due to duplicates in My Music folder and iTunes Media. Ive done Some reading up and can't seem to find a definitive answer to what to do.
    Ive Backed up My Music and iTunes media on a External Hard-drive, My Music folders are all neat and organised and would like it to stay that way, But I've noticed iTunes media folder was a mess, This is My fault as i had the make a copy to iTunes media ticked in preferences. And the other one De-selected ( Keep Music Organised )
    So to free up space  on the Mac I'm going to delete iTunes media as this is no use to me the way it is, I can't find anything in there and it looks a mess. The Problem with this is iTunes reads from iTunes media and i would rather it read form my organised Music files on the internal Hard-drive so i can keep ontop of it.
    All my Playlists are built within iTunes as i use them in Serato for DJ Purposes , So i would like to keep these playlists and just let iTunes read from the hard drive instead Is there a way once iTunes media is deleted i can highlight a 2014 playlist for example with 250 songs in and change where iTunes looks for them so i don't have to reload all the music? with iTunes media deleted there coming up saying can't Locate File , but i will have to manually show iTunes 25000 where they are manually , Can this be done per Playlist in one big Hit?
    Thank you and hope it all made sense

    Unfortunately it is not making enough sense for me to try to make real suggestions.
    If you are going to disable iTunes media preferences then you have to be 100% organized and know how iTunes works because from that point on iTunes will stop helping you maintain your files in any way.
    Yes, it may look a mess but the whole thing is designed so you should never need to look in your iTunes folder yourself, just at the iTunes application window.  Maybe you need to do this to use your Serrato thingy but that's because you're doing something special.
    If you add a file to iTunes and have the "copy to" preference set then it will place a copy of what you add in the correct folder inside iTunes Media folder.  The only way you should have media files actually directly in other folders is if you put them there yourself or you have residual structure from pre-iTunes version 9 before media was split into folders of different kinds.
    If you disable iTunes media preferences then iTunes is absolutely terrible at following media moved to other drives.  Moving to a different drive is not really moving, it is copying and then deleting the original, and that means iTunes sees the file as being gone.
    I really get lost on your fourth paragraph.
    What are the iTunes library files? - http://support.apple.com/kb/HT1660 More on iTunes library files and what they do - http://en.wikipedia.org/wiki/ITunes#Media_management What are all those iTunes files? - http://www.macworld.com/article/139974/2009/04/itunes_files.html Where are my iTunes files located? - http://support.apple.com/kb/ht1391 iTunes 9 [and later]: Understanding iTunes Media Organization - http://support.apple.com/kb/ht3847

  • Why Does iTunes Continuously Read From the Hard-drive?

    Hi. I have recently discovered an odd behaviour from iTunes: instead of reading an entire song from the harddrive and storing it in ram during playback, iTunes reads small chunks of data very frequently. For example, when playing a 128Kbps song the HD reads 68KB chunks approximately every 3 seconds, and when playing lossless WAVE files the HD is constantly reading at 200KB/s. I found this out by having iTunes open and playing music while having all other programs closed, and monitoring the disk activity from Activity Monitor (and I'm sure that it's iTunes that was reading from the HD because when the music was paused the HD was idle).
    So, my question is why would iTunes do this? This seems like an extremely inefficient use of the harddrive for several reasons:
    - Constantly reading small chunks from the HD uses much more power than reading large chunks infrequently because idle hard-drives use much less power than active hard-drives
    - This will slow down other applications that need to make heavy use of the HD because iTunes will be constantly interrupting anything else that is using the disk (this is especially true for Photoshop or any other program that uses lots of swapfile space)
    - It puts unnecessary wear on the HD heads
    - It is dangerous for laptops, which can easily get thrown around or bumped. Momentarily reading a large chunk of data and leaving the HD idle for the majority of the time will be much safer for the HD heads
    - Hard-drive-based portable music players read large chunks of data infrequently because it is well-known that this saves power and protects the HD in these devices.
    So... is there any reason that iTunes is exempt from these reasons??
    -Eric

    I too have wondered about this. You'd think with 1.5GB RAM that itunes would take 3MB of it and leave my drive alone for a few minutes. I don't really feel comfortable doing drive intensive activities such as file copying while itunes is running.

  • Referenced files in Aperture 3 are not reading from new hard drive.

    I just merged one libary into another library on my machine in Aperture 3. Everything seemed to work fine with that. Many of the images in the new large library are referenced images. I had many of them initially referenced onto external drives. I'm not consolidating into one larger drive (with a back up too of course). I copied the files onto the larger drive from the individual external drives. I plugged in the new external drive with all of the photos on it and when I went to locate referenced images in Aperture, I found them, however many times the "reconnect" or "reconnect all" buttons are greyed out when I choose the photo. It's not letting me reconnect the images and they do have the same file names.
    I have no idea what to think or do. I don't want to have to plug in all of the old drives to get to the pictures. I want everything on one drive to access my large aperture library that is now all in one place as well.
    Please help!
    Thanks!

    aperture 3
    I meant the full version number:
    With permissions I meant the following:
    You need to have read & write permissions to the files to be able to reconnect the files. To check the permissions, select an original image filein the Finder and press the key combination ⌘I to launch the "Info" panel. In the Info panel disclose the "Sharing&Permissions" brick.
    Check if you have Read&Write access to all your image files, also to the folders containing them. If there is a permissions problem, change the permissions to "Read&Write". It would help to set the "Ignore Ownership on this Volume" flag. You'll find this flag in the "Info" panel for your external drive.
    But the safest way really to solve this would be to let Aperture relocate the files to your new drive and not to move them manually. Connect the original drives with your original master image files and move the masters by using Aperture's command "Relocate original file". Then their would be no need to reconnect.

  • Help reading a .txt file from the hard drive....

    Hi guys,
    Ok... I need to know how to read a .txt file from the hard drive... I have an example on how to read from a disk, but I don't have a disk drive. I could be confusing terminology, but I don't think I am. Here is the code I have for reading from a disk.. please let me know how I should change it to read from a hard drive.
    Also, when the error pops up, it says that it can't read another .txt file that is not specified in the code... any ideas how that is occuring? Please advise.
    import java.io.*;
    public class TEST {
    public static void main(String args[]) throws Exception{
    FileReader fr = new FileReader("customer.txt");
    BufferedReader bfr = new BufferedReader (fr);
    String s;
    while ((s=bfr.readLine())!= null){
    System.out.println (s);
    fr.close();
    }

    Ok... I need to know how to read a .txt file from the
    hard drive... I have an example on how to read from a
    disk, but I don't have a disk drive. I could be
    confusing terminology, but I don't think I am. Here
    is the code I have for reading from a disk.. please
    let me know how I should change it to read from a
    hard drive.The code will be the same, regardless of where the file is located. It's just the filename that will be different.
    Also, when the error pops up, it says that it can't
    read another .txt file that is not specified in the
    code... any ideas how that is occuring? Please
    advise.Probably becuase the class file (compiled version of the source code) is a different version to the source code, i.e. the source code hasn't been recompiled since the source code was changed.
    How does this relate to EJBs?

  • I had backed up my I-tunes files to an external hard drive but after my computer crashed when I try to reload from the hard drive the message comes up saying I-tunes library cannot be read because it was created by a newer version. Help please!

    I had backed up my I-tunes files to an external hard drive but after my computer crashed and I restored it when I try to reload from the hard drive the message comes up ""I-tunes files cannot be read because it was created by a newer version of I-tunes". Help Please

    Upgrade the version of itunes on the new computer
    Itunes.com for free download.
    Peace

  • Why can't iTunes play music from read-only external hard drive?

    I have a write-protected external hard-drive which I keep all of my iTunes media on. iTunes recognizes all of the files, including the metadata on the id3 tags, and can find the files in Windows Explorer. However, it cannot play the files while the drive remains write-protected. Is there a work around for this as I would prefer to keep the hard-drive protected? Why does iTunes require write-access to play songs? Other media players have no problem playing from my read-only external hard-drive. Thanks for any help

    Welcome to the Apple Community.
    When you say you can't play through both devices at the same time, what happens when you try, are you able to select multiple speakers, do they deselect themselves, do you not get the option or does it just not work when you select multiple speakers.

  • Setting L7Pro to write/read audio from Ex Hard Drive

    Hey everyone - Purchased a LaCie 250gb drive 7200rpm with 8mb buffer! Firewire 400. I followed the instructions and got it formatted and all but I have a question. How do I tell Logic (or my Imac) to write audio straight to that drive when recording? I want to be able to have all my session audio files being written too and read from that LaCie drive. Any assistance is welcome...
    Thanks (I'm new to MAC if you have not noticed
    IMAC G5 1.8 80GB; Mac OS X (10.3.9); 1.25GB RAM, FirePod, Logic Pro 7, Lacie 250gb External

    Another thing you can do is create your project on your external drive. All your audio will go right into your project, keeping everything in one neat, little (well, maybe not little ) bundle.
    jord

  • How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive w

    How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive without opening a browser?
    The guts of my computer were rearranged and I got a new main hard drive. My old one is still in there and I can get stuff from it, but when I go to the Mozilla folder on the old one, I can't figure out if there's anything I can do to get all my bookmarks from that drive to my new one, where Firefox is newly installed.

    If you open Firefox then Firefox will always use the default profile folder as found via profiles.ini on your system drive.
    You either need to import the file in your current default profile or copy the file to your current profile folder while Firefox is closed.
    Firefox 3 stores the bookmarks and the browser history in [http://kb.mozillazine.org/places.sqlite places.sqlite] and no longer creates an HTML backup by default.
    There are also (five) JSON backups in the bookmarkbackups folder within the Firefox profile folder.
    You can either copy the file places.sqlite to your [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] or import the most recent JSON backup from the bookmarkbackups folder of that old profile.
    See:
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See http://kb.mozillazine.org/Profile_folder_-_Firefox
    "Application Data" in XP/Win2K and "AppData" in Vista/Windows 7 are hidden folders.
    See http://kb.mozillazine.org/Show_hidden_files_and_folders
    Go to: Control Panel > Folder Options > "View" tab > under "Hidden files and folders", select "Show hidden files and folders".
    You may want to un-check the box "Hide extensions for known file types" to see the file extensions of all files.

  • [SOLVED] How to Restore Folders/Files from a Hard Drive

    I broke my system today; it won't boot into any run level. Rather than try to fix it, I'd like to just pull off the 4 or 5 MB of files that are on the hard drive. The partition they are in was formatted XFS. I have the 2008.06 ArchLive CD - is it possible to access files from the hard drive after booting with an ArchLive CD? If so, I could just scp them to an external server. Any help is greatly appreciated. Thanks.
    Last edited by tony5429 (2008-09-28 04:52:39)

    You should be able to mount the partition once you've loaded up the live CD. Just figure out which one it is by using
    fdisk -l
    then mount it to /mnt or wherever you want it.
    As for moving/saving them, I'm not entirely sure how to get them onto an external server. You might have to mount another partition in order to install any apps that you need to connect to an external server, but wait for someone who really knows to answer before you try it. If you're only talking about 4 or 5 MB, I would just mount a USB stick and dump them on there.
    Last edited by Xyne (2008-09-28 03:38:02)

  • After upgrading to FF 3.6.12 I can no longer view PHP pages from my hard drive.

    After upgrading to version 3.6.12 I can no longer open PHP web pages from my hard drive. When I create or edit web pages I view them from my hard drive first before uploading, as many webmasters do to look for errors before taking them live.
    I can view PHP pages online, but from my hard drive it just spawns endless empty tabs. Instead of just opening the page it asked me what to open it with, thinking the PHP web page is a script.
    It was working fine before the upgrade. I had a page open that I wanted to edit, which it reopened when my browser restarted.
    Then I edited the page. All I did was add a link to it. Then I hit the refresh button to see the change and instead of reloading the page, FF asked me what to do with the PHP script, prompting me to save it or choose what program to open it with.
    I selected to view it with FF and it just spawned endless tabs. They wouldn't stop. Had to shut down FF and it probably had 40 tabs opened with nothing on them. I tried other PHP pages from my hard drive that opened fine before, but it did the same thing with them.
    I tried finding help online and I see others have had the same problem, but no solution was offered that worked. I tried rebooting, same story, it wants to know what to do with the PHP script.
    I'm being forced to use another browser, so I'm going to go download Chrome now. If this probably isn't fixed soon I'll simply give up on FF. It's not worth the aggravation. I can't tell you how much TIME I've wasted today -- HOURS.
    Very disappointed.

    Thanks for the reply. It doesn't have to process the php, it just has to show the HTML content. It did that just fine before the last upgrade but won't now.
    I've seen that page you referenced: http://kb.mozillazine.org/File_types_and_download_actions.
    It doesn't help. The things it says to look for aren't there for me, specifically:
    browser.download.pluginOverrideTypes
    plugin.disable_full_page_plugin_for_types
    I followed the rest of the instructions but it didn't help.
    I did get it to quit opening tabs, instead it prompts me what it should do with the file every time now. What it should do, and used to do, is open the php page and display the HTML content.
    Any other ideas?

  • I am trying to delete songs from itune 11 library and i want it to delete the song from my hard drive as well.  All my songs are in the music folder but not in the itunes folder??  itunes did not prompt me to move file to trash nor is there an option??

    I am trying to delete songs from itune 11 library and i want it to delete the song from my hard drive as well.  All my songs are in the music folder but not in the itunes folder.  itunes did not prompt me to move file to trash nor is there an option to remove file to trash bin.  How can i  delete songs from both the itunes and hard drive at the same time?

    aespinoza2210 wrote:
    could it be in the itunes folder or does it have to be in the itunes media folder, which is within the itunes folder??
    A Espinoza,
    The iTunes Media folder is set in Preferences > Advanced, and is the key to most iTunes folder organizational activities.  So I doubt that the automatic deletion will work for files that are somewhere else within the folder structure.
    However, I have not experimented with that issue in quite a while, so you are welcome to give it a try in iTunes 11. 

  • The circuit of my macbook is dead yet the hard drive is fine.  I need to access a file from the hard drive, how can i do this? is there a cable i can connect to another mac that will let me transfer the file?

    The circuit of my macbook is dead yet the hard drive is fine.  I need to access a file from the hard drive, how can i do this? The mac turns on the screen freezes as bright blue.  Is there a cable i can connect to another mac that will let me transfer the file?

    There is another option if the Macbook will start up in Target Disk Mode.
    Restart the computer while holding down the T key. If you see the firewire symbol moving around on the screen you can connect this one to another one in TDM. You will need a suitable cable to connect the two Macs.
    http://support.apple.com/kb/ht1661
    Firewire symbol:

  • Transferring some files from old hard drive to new mac book pro: How do I do this?  I bought a SATA Wire, and can't figure out how to get my files

    Hi there, my old mac book recently died and I opted to buy a new macbook pro, instead of pouring lots of money into the old computer.  I was able to get my hard drive out, and I bought a 2.5" Sata Nootbook Drive Upgrade Kit.  I have also installed superduper!....but I can't really figure out how to get everything to work.  I just want to be able to take some of my files from my hard drive, not everything...
    Any suggestions?
    Thanks!

    I don't know what a "2.5" Sata Nootbook Drive Upgrade Kit" is but if you have a internal drive you need to connect all you needed was a $20 IDE/SATA to USB adapter
    You don't need Superduper, that's software designed to clone a entire Mac's boot drive to a external drive for bootable backup purposes using the same machine/make/model.
    Since the new Mac is different than the old one you can't clone (well you could but it will break the machine) the old drive to the new one.
    However you can use the adapter above and software Apple provides in the Utilities folder on the NEW MAC, called Migration Assistant to transfer your User to the new machine.
    However this might not be the best course of action as it can transfer unwanted data and cause problems in the Library, old programs that won't run on 10.7, etc.
    You can simply create the same named user on the machine (System Preferences > Accounts) log into it and then connect the external drive with the adapter and copy the contents of your users folders over and place into the same.
    It's always good to have another Admin level user account on the machine in case the primary one has a User based issue and you need to log into the other and grab files. So if either manually or via using Migration Assistant you wind up with two user accounts on the machine, it's really not that big of a deal.

  • DVD from a Hard Drive  Camera.

    I wanted some feedback on YOUR best way to make a DVD from a Hard Drive Camera. I have the Sony 60 GB HandyCam. It's great. I have many programs to create a DVD and edit them. Some are Quicktime Pro with MPEG 2 converter to 4 then to Streamclip, CaptyDVD, VisualHub, ImageMixer.
    When converting to StreamClip , for instance, which formate is best????
    I have found that the QuickTime Pro/2 to 4 converter then into iDVD gives me the best results. Then right to iDVD.
    The Visual Hub program is great but it gives me the letter box effect. I rather have the true 16x9 formate.
    Any other ideas or programs out there YOU like?
    Thanks in advance, Don
    MacBook core 2 Duo   Mac OS X (10.4.8)   iMac G4 flat panel

    now we put the cart before the horse ...
    mpegs are not meant for editing, any further processing; mpegs are a delivery- and playback format...
    if you like to do editing (adding titles, music, disolves etc), use a recording-device which supports a codec which is MEANT for editing.. as "dv", on miniDV ...
    Streamclip support basic editing (e.g. erasing parts)...
    and the loss of audio by using Quicktime for convertign mpegs is another cup of tea ...
    nack to your Original Post:
    Capty is best in terms of quality, because no triple-conversion is needed, as long as you "burn" videoDVD with Toast or Sizzle ..
    Streamclip (+mpeg2 plug-in) is best in terms of "options" ( you can edit AND convert)
    DVD2DV is best in terms of usability .. one-click-only
    VisualHub is best in terms of flexibility (swiss army knife converter)
    ffmpegX + Sizzle is best in terms of cost - free (iLife comes preinstalled)
    ... and DVD as recording media is NEVER the best, compared to any/most miniDV camcorders... less usabilty (= not supported by iLife, needs additional processes etc), less quality AFTER adding anything/editing/processing, ...
    so, back to Square One - get a miniDV for movie making ..

Maybe you are looking for

  • Do AI native files in Indesign cause large PDF exports?

    Hello all: I am a novice at InDesign as well as exporting to PDF, but I have a 45 page document I want to save for web viewing only.... it's my design portfolio.  There are a lot of AI graphics I have placed in this document (about 20 AI files) and w

  • Rsa3 not getting any data

    Hi, I am extracting data from 0fc_op_01.when i extracting data.i am able to see data in table and psa.when i check in rsa3 its showing zero records only.this is full load. how can i solve this problem?i am working in bi7.

  • Can't configure device management

    "This computer is already configured to manage network accounts. It cannot be configured again." How do I fix this error? Thanks!

  • Help. Need iPhoto Book Specs / Anyone who has order a book or knows?

    I'm getting ready to scan my color photos and then place an order for a iPhoto book. I'll set my scanner to decrease or enlarge (75%..100%.. 200%) for whatever size I need. I need to know the specs the photos should be scanned at for max quality and

  • Using Table returned by Web service in Adobe Form

    Hi Experts, I am working on a scenario wherein i am supposed to have a table as a response parameter in a RFC based webservice. When this web service is stand alone executed it gives back the records in the table. Now this web service is required to