Move files faster

Do you know some trick to move files faster. I have an external hard drive using Firewire hard drive and I am trying to move files to a USB 2.0  drive, but it is very slow.

I would say the speed is determined by the slowest link, which would be the USB drive and I don't think there is anything you can do about it unless the drive(s) are malfunctioning.

Similar Messages

  • .mov files - video too fast, audio ok

    HI!
    I have a problem with .mov files. They play and the sound is ok, but video plays too fast and i ahead of audio. I'm sure the video is too fast, because i can see when someone is talking that it's way too fast. I've tried reinstalling quictime, installing older versions, reinstalling direct x and graphics drivers. I even tried quictime alternative. Nothing helps. This happens to files that i have on my disc.And it only happens on my computer, on my brothers it plays just fine, so the files are ok.
    Can anyone help?
    thnx, Blaz
      Windows XP Pro  
      Windows XP Pro  

    same here 39sec video is imported as 20 sec video... any help?

  • How do I export a .mov file with timecode that matches the timecode on my project's timeline?

    Hi:
    This seems like it would be an easy thing to figure out, but I'm striking out so far:
    I have a long, 10-minute source video (actually a series of 16mm film clips that were telecined to a single 10-bit uncompressed .mov with continuous timecode by a film lab) on my project's timeline.  I need to be able to export small sections of the timeline to individual .mov files--and I need to be able to open the resulting short .mov files in a footage logging application called F5.  I'm currently trying to render these small individual videos as H.264 .mov files, since that's a format F5 can read.  Rendering/exporting the 'work area' selection from my project works fine, so that's no problem.
    The problem I'm having is that timecode of the resulting H.264 .mov files don't match the timecode on my Premiere project's timeline--they always start at 00:00:00:00.  I don't want that.  If I render out (for example) a section of 00:05:10:00 to 00:07:00:00 on my project's timeline, I need the exported .mov file's timecode to start at 00:05:10:00 and run to 00:07:00:00, not restart at 00:00:00:00.  Is this possible?
    I'm running Premiere Pro CS6.0.2 on a Mac OSX 10.8.2, all updates installed.
    Thanks very much.

    works using " title" ( cause its alpha ) but doesnt work using black video...gotta jump thru hoops to do it that way..is nuts...so title works fast
    so you put cti where you want to start, put title up there above your video, put timecode in, make it " generate" , put start time in, and drag title to the end of your work bar for export...and it should be good...
    or of course ann's way is good too

  • What is the best way to move files to different folders in a plug-in?

    I am writing a plug-in that needs to move files on the hard drive.  I am using LrFileUtils.move(from, to) and everything is fine except that the catalog is not updated when the file is moved.  After the plug-in runs I can use Library > Synchronize Folder to get the catalog back in sync with the new locations of the photos on the drive, but this manual step is less than ideal. 
    I am unable to find a way to move the files within the plug in that also updates the catalog (like dragging photos to a new location within the LR Navigator pane).  Lacking an API for this, I looked for a way to programmatic execute the Synchronize Folder menu item, but was not able to find this either..
    Can anyone recommend a better way to move photos to different folders within a plug-in that also updates the catalog?

    Hi Andy,
    There are 3 main file formats that you can consider writing your data out to in LabVIEW:
    ASCII
    Binary
    Datalog
    ASCII
    ASCII files are useful because every operating system and almost every application can read/write ASCII format files. Use ASCII files when:
    Other users or applications will need to access the data file.
    You will not need to perform random access file I/O
    File I/O speed is not crucial
    Disk space is not crucial
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write to Text File.vi and Read from Text File.vi
    Binary
    Binary byte stream files are more specific to data storage and retrieval. Use b
    inary files when:
    File I/O will remain in LabVIEW only -- no other applications will be needing to write/read that file. There is no standard formatting for binary files and thus other applications or operating systems may be unable to read the file.
    Files are smaller than ASCII files
    Easier and faster random access to data
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Binary File.vi and Read Binary File.vi
    Datalog
    When to use datalog:
    If you need to record data with a mixture of types, it can be cumbersome to convert everything to ASCII or to keep track of the binary formatting.
    Datalog format is binary and internal to LabVIEW, so again only use this format if no other applications or operating systems will be needing to perform file I/O on the file.
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Datalog File
    Example.vi and Read Datalog File Example.vi
    Good luck!
    Kileen C.
    Applications Engineer
    National Instruments

  • Using an External HD with USB 1.1 for Media (Movie files) storage?

    Many thanks for your attention.
    For a Media Storage (mostly movies) HD, I ordered a Maxtor OneTouch II with Firewire and the company mistakenly sent me one with USB 1.1 instead.
    I remember reading that for Media Storage, only the Firwire connection will work (for Macs). Or that there are a lot of problems with USB.
    Before sending this HD back to company, just checking to see if this is so.
    Also (when I get the correct Drive), I've heard that in order to store a Movie File, (a movie on Final Cut Pro or iMovie, etc.), the External Hard Drive MUST be formatted as a "Mac Extended (Journaled)" Hard Drive.
    Posting here for people's thoughts, opinions (hopefully not contradictory).
    - Ross

    Send it back.
    Even USB 2.0 isn't good for media. Fast transfer rate, but not a sustained one.
    USB 1 won't work AT ALL.
    RETURN!
    Shane
    "There's no need to fear, UNDERDOG is here!"

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • Trouble exporting any mov files into H264 after adding K-Lite codec pack into Windows XP SP3.

    I have QuickTime 7.7 (1680.34) installed. I have used it extensively and exported the video separate from the audio and extracted and used filters and it has all worked great with all of the other codecs I have had installed. It even worked great after I recently installed this K-Lite codec pack that actually saved files in a *.hdmov file type and I was able to view them with the Media Player Classic .... (I have Windows XP update 3)  and see what I could do over there and then go back to saving them as *.mov file types and work in QuickTime Pro. And still export them relatively fast to their latest H264 format.
    I gave more file types to the Media Player Classic. I think along the line of the just the *.3g2 and *.mp4 and took them away from QuickTime but still keeping the *.mov, *.qt and *.mqv  file types .... and that is when I think everything must have changed.  all of a sudden I can not save any *.hdmov files and the export process in QuickTime takes longer than forever.
    I thought that I had reconfigured Media Player Classic back to its default ....
    and it should all go back to being how it was.
    Is there some Direct Show filter or codec that upsets QuickTime Pro ... that I might have not reset back to what it was?
    Any codec help would be much appreciated.
    This is what the K-Lite site says in one instance about H264:
    If the video that you are playing contains H.264 video, then you could try using another decoder. The codec pack by default uses ffdshow for decoding H.264 video. This is a free and open-source decoder. Other decoders exist that have better performance as ffdshow. They should give you smoother playback, specially if you have a dual-core or quad-core processor.
    Alternative H.264 decoders are:
    CoreAVC. This decoder is unfortunately not available for free.
    DivX H.264 decoder. This decoder is available for free as part of the DivX Bundle. Tip: disable everything in the bundle except the H.264 decoder.
    ffmpeg-mt. This is an experimental multi-threaded version of the libavcodec decoding library, which is used by ffdshow. You can select ffmpeg-mt as decoder in ffdshow video decoder configuration.
    MPC DXVA H.264 decoder. This is an internal decoder of Media Player Classic Homecinema. It uses your graphics card to perform most of the decoding process, resulting is a very low CPU usage. You can enable this decoder though: MPC Options -> Internal Filters. Note: this decoder has some specific requirements.
    I downloaded the DivX bundle and will pull out that codec. I bought the CoreAVC for $13 but Norton said it was a risky file when I downloaded it ... (I have a question into the site about that) and I will try the ffmpeg-mt codec as well as see what they say about the last one. I will also try to undo everything I did that happened I guess before QuickTime started to export so slow that it is not even worth it to try and convert a mov file into H264.
    Sorry so long ... I just was trying to lay out the things I have attempted, will attempt to try and improve the situation.
    Thanks again very much if anyone makes it thru this ... geez .. sorry.

    Hello Tim,
    I decided to do a clean install, a fresh new installation of windows and all its updates, I didn't get the option of
    install SP1 yet.
    After that I only installed Catalyst drivers: 11.5 and Realtek HD audio drivers, all downloaded on May 24 2011.
    Then latest FFDShow and MPC-HC to test, both x64 versions Nothing else installed.
    Only a fresh copy of windows with its updates and those mentioned drivers.
    To my surprise, it happened a gain.
    It still crashes after a while when playing MKV videos.
    It's weird, because it doesn't happen with avi's or mp4's.
    So, there must be something wrong with one of windows updates that creates this windows FREEZE.
    Also there is no possibility to find out what error it is in "Event Viewer" as nothing gets recorded there. Anyone could
    advise?
    Thanks

  • Older .mov files have no previews

    Trying to see if ANYONE else has seen this problem:
    I was digging through my media archive disk and noticed something very odd: maybe three quarters of my older .mov files show only a generic icon in the finder, and trying to use the Quick Look (or preview) feature will only play the SOUND from the file.  When played within QT 7.6.6 Pro, the files are still intact.  Is this a harbinger of the problems people have been complaining about with QT 7.7?
    Add: attempting to re-save the files (to see if the format has changed between versions of QT) netted the same set of features, so it would appear that the difficulty may be with Finder, not QT.  As NOT ALL files are affected, I'm not sure what's going on.  Looking at the ages of the files, there's no hard and fast correlation between what the file was created (or last modified) and whether or not it displays correctly in Finder.  Worse, these clips all came from the same rip of the same DVD originally.  I have no clue what's going on, but it's making it difficult for me to separate out video clip from sound clip files in my working directories. 
    Ah!  That may be it.  The files that are displaying without video in finder may have last been worked on in QT using the Export as AIFF command.  But that shouldn't have affected the parent file.  Pretty glaring mistake if that's it.

    Same problem here.  But I'm using QuickTime X and Lion.  Didn't notice anything until I upgraded to 10.7.1.   I was thinking it was related to that, but I guess not if you're having the same issue on 10.6.8.

  • If you move files to external disk in PSE 7, are those files backed up when you Backup Catalog

    My catalog is now about 50 GB and I want to decrease its size so that it takes less space on my hard disk and, more importantly, so my backups and restores don't take so long.    These are files that will not be edited in the future so why keep backing them up?  If I move files offline to an external disk using File, Copy/Move Files to Removable Disk will Elements backup those files as well as the files on my C Drive when I backup my catalog?
    Alternatively,can I move files to a new catalog along with the assciated catalog data (such as albums, tags, etc.)?
    Thanks for any help.

    function(){return A.apply(null,[this].concat($A(arguments)))}
    If you use incremental backups, how often should you do a full backup?
    No hard-and-fast rule.  The more incrementals there are, the longer it could take to do a restore.  I suggest starting out doing a full backup every 10 incrementals.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    I also backup my backups to a 2nd external drive.  Can I use PSE to do that 2nd backup (including the incremental backups) or do I need to copy the backup folders created the first time to a 2nd external disk using Win Explorer?
    I think using Windows Explorer to copy them to the 2nd external drive will be easier and faster.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    I assume when moving to the new computer I just plug in the external drive containing the backup from the old computer (including incremental backup folders) and go through a normal restore.
    Right.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    When I do a full backup, does PSE include the picture files stored on an external drive?
    Yes.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    When I restore that backup to a new computer, does PSE restore the files which were on an external drive on the old computer to an external drive on the new computer, or would I have to move them from the new computer to an external drive  again?
    I think that if you select the Original Location restore option, it will restore them to the external drive, but I haven't tried that.  You could make a small test catalog with a few photos and try it.

  • IDVD making movie files low res

    I made a slide show in iMovie, exported it as an HD file with no issues. I brought the file into iDVD to burn and now the file is showing up very low resolution. I've used this method many times before and this is the first time I've ran into problems. The original images are 9x14 w 300DPI. So I think it's a setting in iDVD. The movie file looks fine when I play it in iTunes or Quick Time. GRRRR

    Hi
    The original images are 9x14 w 300DPI. So I think it's a setting in iDVD.
    NO
    DVD is as Standard SD-Video - Any encoding program used. iDVD, DVD-Studio Pro or Roxio Toast™
    BUT
    The resulting DVD can be better or worse.
    Using
    • iMovie'08 or 09 or 11 - Sends over every second line to iDVD - result is loss in quality
    (I use iMovie HD6 or FinalCut - as they deliver 100%)
    • Share to iDVD - I NEVER use this as it degrades movies especially if photos are used and NO Ken-Burns Effect.
    I Share to Media Browser and as LARGE - NOT HD or other resolution - in iDVD I import from Media
    (If I have to use iM'08 to 11 - else I Close iMovie and import movie project directly from within iDVD)
    My notes on DVD Quality
    DVD quality
    1. iDVD 08, 09 & 11 has three levels of qualities. (version 7.0.1, 7,0.4 & 7.1.1)
       iDVD 6 has the two last ones
    • Professional Quality (movies + menus up to 120 min.) - BEST
    • Best Performances (movies + menus  less than 60 min.) - High quality on final DVD
    • High Quality (in iDVD08 or 09) / Best Quality (in iDVD6) (movies + menus up to 120 min.) - slightly lower quality than above
    About double on DL DVDs.
    2. Video from
    • FCE/P - Export out as full quality QuickTime.mov (not self-containing, no conversion)
    • iMovie x-6 - Don't use ”Share/Export to iDVD” = destructive even to movie project and especially so
    when the movie includes photos. Instead just drop or import the iMovie movie project icon (with a Star on it) into iDVD theme window.
    • iMovie’08 not meant to go to iDVD. Go via Media Browser or rather use iMovie HD 6 from start.
    3. I use Roxio Toast™ to make an as slow burn as possibly eg x1 (in iDVD’08 or 09  this can also be set)
    This can also be done with Apple’s Disk Utilities application.
    4. There has to be about or more than 25Gb free space on internal (start-up) hard disk. iDVD can't
    use an external one as scratch disk (if it is not start-up disc).
    5. I use Verbatim ( also recommended by many - Taiyo Yuden DVDs - I can’t get hold of it to test )
    6. I use DVD-R (no +R or +/-RW)
    7. Keep NTSC to NTSC - or - PAL to PAL when going from iMovie to iDVD
    8. Don’t burn more than three DVD at a time - but let the laser cool off for a while before next batch.
    iDVD quality also depends on.
    • DVD is a standard in it self. It is Standard Definition Quality = Same as on old CRT-TV sets and can not
    deliver anything better that this.
    HD-DVD was a short-lived standard and it was only a few Toshiba DVD-players that could playback.
    These DVDs could be made in DVD-Studio Pro. But they don’t playback on any other standard DVD-layer.
    Blu-Ray / BD can be coded onto DVDs but limited in time to - about 20-30 minutes and then need
    _ Roxio Toast™ 10 Pro incl. BD-component
    _ BD disks and burner if full length movies are to be stored
    _ BD-Player or PlayStation3 - to be able to playback
    The BD-encoded DVDs can be play-backed IF Mac also have Roxio DVD-player tool. Not on any standard Mac or DVD-player
    Full BD-disks needs a BD-player (in Mac) as they need blue-laser to be read. No red-laser can do this.
    • HOW much free space is there on Your internal (start-up) hard disk. Go for approx. 25Gb.
    less than 5Gb and Your result will most probably not play.
    • How it was recorded - Tripod vs Handheld Camera. A stable picture will give a much higher quality
    • Audio is most often more critical than picture. Bad audio and with dropouts usually results in a non-viewed movie.
    • Use of Video-editor. iMovie’08 or 09 or 11 are not the tools for DVD-production. They discard every second line resulting in a close to VHS-tape quality.
    iMovie 1 to HD6 and FinalCut any version delivers same quality as Camera record in = 100% to iDVD
    • What kind of movie project You drop into it. MPEG4 seems to be a bad choice.
    other strange formats are .avi, .wmv, .flash etc. Convert to streamingDV first
    Also audio formats matters. I use only .aiff or from miniDV tape Camera 16-bit
    strange formats often problematic are .avi, .wmv, audio from iTunes, .mp3 etc
    Convert to .aiff first and use this in movie project
    • What kind of standard - NTSC movie and NTSC DVD or PAL to PAL - no mix.
    (If You need to change to do a NTSC DVD from PAL material let JES_Deinterlacer_3.2.2 do the conversion)
    (Dropping a PAL movie into a NTSC iDVD project
    (US) NTSC DVDs most often are playable in EU
    (EU) PAL DVDs most often needs to be converted to play in US
    UNLESS. They are play-backed by a Mac - then You need not to care
    • What kind of DVDs You are using. I use Verbatim DVD-R (this brand AND no +R or +/-RW)
    • How You encode and burn it. Two settings prior iDVD’08 or 09
    Pro Quality (only in iDVD 08 & 09)
    Best / High Quality (not always - most often not)
    Best / High Performances (most often my choice before Pro Quality)
    1. go to iDVD pref. menu and select tab far right and set burn speed to x1 (less errors = plays better) - only in iDVD 08 & 09
    (x4 by some and may be even better)
    2. Project info. Select Professional Encoding - only in iDVD 08 & 09.
    Region codes.
    iDVD - only burn Region = 0 - meaning - DVDs are playable everywhere
    DVD Studio pro can set Region codes.
    1 = US
    2 = EU
    unclemano wrote
    What it turned out to be was the "quality" settings in iDVD. The total clip time was NOT over 2 hours or 4.7GB, yet iDVD created massive visual artifacts on the "professional quality" setting.
    I switched the settings to "high quality" which solved the problem. According iDVD help, "high quality" determines the best bit rate for the clips you have.
    I have NEVER seen iDVD do this before, especially when I was under the 2 hour and 4.7GB limits.
    For anyone else, there seem to be 2 places in iDVD to set quality settings, the first is under "preferences" and the second under "project info." They do NOT seem to be linked (i.e. if you change one, the other is NOT changed). take care, Mario
    TO GET IT TO WORK SLIGHTLY FASTER
    • Minimum of 25Gb free space on Start-Up hard disk
    • No other programs running in BackGround eg Energy-Saver
    • Don’t let HD spin down or be turned off (in Energy-Save)
    • Move hard disks that are not to be used to Trash - To be disconnected/turned off
    • Goto Spotlight and set the rest of them under Integrity (not to be scanned)
    • Set screen-saver to a folder without any photo - then make an active corner (up right for me) and set
    pointer to this - turns on screen saver - to show that it has nothing to show
    Yours Bengt W

  • Best Settings for Exporting DVD Footage in a Movie File

    Hello,
    I've been trying to find the best settings for exporting DVD footage into a movie file from Adobe Premiere CS6.
    I recently have been using my Magnavox DVD recorder for recording VHS tapes that I made long ago for shows and various other things, and no matter what, my footage doesn't come out as it needs to be.
    Here's an example of what I did recently with my own settings:
    http://www.youtube.com/watch?v=qFV4sT7rHGs
    I'm not expecting HD footage, I know these are tapes, but I'm playing the raw footage on my Xbox 360, and it looks better than this. I had to directly use the VOB files on the DVD for this, as trying to rip the files into an AVI or any other format with a DVD ripper didn't do anything, in fact it degraded the quality and made the audio not play in Premiere.
    So what would be some good settings for exporting a sequence with DVD footage that is from a VHS into a movie file, preferably one that wouldn't degrade the quality?
    Thanks!

    First, read Why not edit mpeg http://tangentsoft.net/video/mpeg/edit.html to get a general idea of why a VOB makes a very poor source file (which is a renamed MPG, with some other stuff like menu screens)
    Also, Read Bill Hunt on editing a VOB/MPG file http://forums.adobe.com/thread/464549
    Once you have a DVD compliant VOB on your timeline, and understanding that a standalone DVD recorder sometimes plays fast-n-loose with "compliance" per the DVD specification, about all you can do is export to standard or widescreen DV AVI and accept the fact that re-encoding an already compressed file is just not going to give great results

  • Best settings for exporting and dropping a MOV file into iDVD7?

    I have a movie (originally shot in HD), made in iMovieHD6, and that I'd like to export and drop into iDVD7. *What settings would the brain trust recommend?* I cannot seem to get iDVD to render a good version through direct export from iMovie. (As a side, I wonder if it is because I started this process by bringing AVCHD files from my camera into iMovie8 and "going backwards" to iMovieHD6.)

    I have used Pro-res from Final Cut Pro into iDVD and it works.
    *This is from iDVD help menu:*
    Video and image formats that work with iDVD
    You can use these movie and graphic formats in iDVD:

    Most video or image files supported by QuickTime (see the list of unsupported QuickTime formats below)

    16:9 widescreen formats

    AAC, MP3, and AIFF audio files

    Any format from iMovie: DV, high-definition video (HDV), MPEG-2 SD, MPEG-2 SD, MPEG-4 SD, MPEG-4 HD, and AVCHD
    High definition video is converted to work with the format of your project. iDVD supports using 16:9 widescreen video; therefore, when your DVD plays on a DVD player that supports widescreen format, the footage appears in its original aspect ratio.
    The following video and image formats are not supported in iDVD:

    Copyrighted or protected videos.

    Movies saved in thousands of colors using the “none” compression setting in iMovie.

    48-bit color images (16 bits per color). To use source files in one of these formats in iDVD, save them in a supported format.

    Aurora uncompressed files. For best results, export Aurora clips as DV-format video before importing them into iDVD.

    QuickTime VR, MPEG-1 or MPEG-2, Flash, streaming or encrypted movies, or QuickTime spanned movies. You can’t add MPEG-1 or MPEG-2 files to an iDVD project because they don’t contain standard video tracks.

    QuickTime Fast Start movies. (Fast Start movies are intended for Internet playback.) When saving a QuickTime movie for use with iDVD, click the Options button in the QuickTime Export dialog and make sure that the “Prepare for Internet Streaming” checkbox is not selected.

  • Exported MOV file from Express - what do I compress it as for media???

    I exported a MOV file from Final Cut Express. Looks great. Now I need to send it to broadcast - CNN, NBC, etc.
    What format should I compress it with Sorenson Squeeze 6? I've tried different presets but want to know what's the best one to use. Please help. Need responses ASAP.

    I'm sorry, I meant to write you have to ask the broadcasters what they want. They can have a lot of very different demands.
    This is also very dependent of what your material is. Fine, you exported to QuickTime Movie, but what did you export. HD? SD? What specification? If you don't know, open the file in the QT player and report exactly what it says in the movie inspector.
    You can put anything on a big enough FTP server provided you have the time and a wide enough pipe. It's probably going to be a really big file or files so you'd better have a really fast connection and/or a lot of time. Sometimes FedExing a drive is faster.

  • Different movie file sizes - different videos??

    I downloaded the Flex 4 In a Week videos for offline viewing a few months ago.
    Today I noticed that, in conjunction with an overhaul of the Flex In A Week web page, the movie files posted therein have changed in size.  They are several megs smaller than the corresponding videos I downloaded a few months ago.  Have the videos changed, or have they only been compressed more for faster download?
    Thanks

    Hi Gusetva,
    All of the content for the videos are the same.  Looks like they just compressed the files.

  • File type/quick time movie file

    My iTunes library used to have a preponderance of mp3 files. Now these seem to have been converted to Quick Time movie files. This might have occurred during an update. What happened and what does it mean.
    Many thanks,
    Wells

    Wells,
    Unfortunately the page you mention (http://www.cminow.org/itunesapplescriptfixer.html) will not load.
    Give it a couple more hours or try:
    http://www.cminow.com/itunesapplescriptfixer.html
    That's my site, and I switched the IP address about four hours ago, and the DNS is probably still pointing to the wrong address. For some reason, the ".com" address changed over really fast (at Comcast anyway), but the ".org" one didn't.
    Here's the AppleScript:on open badfiles
    repeat with i in badfiles
    set the item_info to info for i
    --Change "mp3" to "mp2" in the following line for MP2 files:
    if (name extension of item_info is "mp3") and (folder of item_info is false) then
    tell application "Finder"
    --Change "MPG3" to "MPG2" in the following line for MP2 files:
    set file type of i to "MPG3"
    set creator type of i to "hook"
    end tell
    end if
    end repeat
    end open
    Just copy and paste that into the Script Editor in your AppleScript folder in Applications. Save it as an application. Then find one of the files that's giving you problems and drag it onto the application. It should change the type and creator and iTunes should be happy.
    In order to avoid this in the future, just download the MP3s directly onto your hard drive by control-clicking or right-clicking on the link to the MP3. Choose the menu item that downloads to disk. In Safair, it's "Download Linked File". That avoids the QuickTime Browser plugin, which is what gives it a type of "MPEG" and creator of "TVOD" instead of "MPG3" and creator of "hook", which is what iTunes is happiest with.
    Let me know if any of this wasn't clear, and I'll try to explain it better...
    charlie

Maybe you are looking for

  • IMac G5 won't detect any S-ATA disks

    Hi there, I would really appreciate help with the following: I work as a computer support tech at a university. In front of me right now I have an out of warranty iMac G5 with the following symptoms: - on boot, it chimes normally; after that, the scr

  • "Album Only LP" not showing up in LIbrary

    I purchased an ablum which has the "LP" icon in the upper right corner in the store. The first item on contents list is:  "Group Therapy (Deluxe Version) - iTunes LP" ... and then it says "album only" to the right. I've redownloaded this album a coup

  • Size Limitation for ResultSet  in JAVA

    when i execute a query as ResultSet rs=st.executeQuery("select ....") It throws an error saying "Please Use Server Side Cursor for large resultset"... But when i execute the same in SQL Query Analyzer, it returns the row properly without any issue...

  • BI 4.0 Launch Pad will Freeze When Attempting to Schedule a Report

    I recently set up BI 4.0 Edge series onto my server running MicroSoft server 2008 R2.  The install completed without error so I began implementing 'Best Practice' Crystal Reports.  When attempting to schedule these reports within the BI 4.0 launch pa

  • Appying a general severity to a server or group of servers

    Hi All, We have recently begun to deploy scom 2012 within our company and we are currently building out our system. Basically, in our organisation, we have servers that are critical to production, and some that are not, depending on which goes down o