Need program to fix corrupted video files

Hello,
This my first mac and I was wondering if anyone knew of a program that could help me with the following problem...
I am trying to import videos from my Canon FS100 camcorder (videos are saved on an SD card) and when I plug in the camera to the USB port it can only import one of 9 photos and none of the video. I received a message stating that the files were in an unrecognizable format. I have used the camera and the same brand SD card before and had no trouble importing photo and videos. After about an hour on the phone with APPLE help services last night, the support person concluded that the SD card files had probably been corrupted. Is there a program I can use to fix the files so I can import them to iphoto? I know that the SD card needs to be reformatted before future use but was hoping to be able to use the videos in iphoto and imovie. The file extension of the video file is .MOI or .MOD. I have tried importing directly from the SD card as well but receive the same messages. When I try to import the video clips into imovie, imovie shuts down.
Thank you for any help!

nicoler82 wrote:
.. unfortunately the pictures and some of the videos are no longer visible using the camcorder. I guess the SD card has been corrupted or damaged. Is there anything I can do to restore the images or do I just cut my losses?
oo-ohh.. no happy end..
I once helped a friend, who's snapshot-cam erased his precious photos by itself with this tool:
http://www.bluem.net/en/mac/exif-untrasher/
.. BUT this is for stills..
honestly, no idea, about 'movie recovery' aside the 'usual suspects' for data-recovery..
type 'recovery' as search-item at www.versiontracker.com..
I heard of a tool named *Test Disk* & PhotoRec.. free, and some people are very happy & grateful with it
http://www.cgsecurity.org/
just to feed my curiosity: what brand was the sd-card? and what price?

Similar Messages

  • Fixing corrupted video files

    Hello,
    So an unusual thing has happened to a project I have been working on in iMovie'11. I hope I can explain it properly, since the circumstances seems quite complex (to this layman at least).
    It began when I tried speeding up one of the clips I was using. When I applied this function, it corrupted the project: when spooling through the clips in the project editor, the corresponding video didn't appear in the screen to the right, so I couldn't edit it any more. So I undid the Change Speed edit, shut down iMovie and restarted it, hoping that I could pick up again from where I left off, without the final speed change edit. I have done this a number of times when this problem occurs, and it usually works.
    Unfortunately, this time, the project was still corrupted. In fact, all the projects I was working on, bar one, were corrupted, and I could no longer edit them. I couldn't even go into any of the projects, since the text in the button at the top left saying "Edit Project" was grey and didn't respond to clicks.
    Trying to salvage the project, I removed the New Event folder from the iMovie Event folder in Finder, and restarted iMovie. When it started, I was now able to enter my projects although of course, without any clips in the iMovie Event folder, I could only look at the individual thumbnail clips, and couldn't spool through them.
    I copied the clips from the project I was working on, created a new project and pasted them into that. Then I put the New Event folder back into the iMovie Event folder, and imported another clip. After I did this, I was actually able to work on the clips from my original project in the new project again. It seemed that the clips from my project were linking to the files in the iMovie Event folder, and the thumbnail files too. I thought I'd managed to save the project, but when I restarted iMovie the next day, the formerly working project was corrupted again.
    I know that the clips are there, organised and edited in the way I want them, but I think they are having trouble linking to their corresponding clips in the iMovie Event folder. In the event library in the bottom half, the bits of the clips I am using for this project are marked out in orange lines at the bottom of the thumbnails, as it would with a properly functioning project. So in a sense, the programme "knows" what clips I am using and where, but unless I can edit them properly in the project editor, I can't do anything with it, and certainly can't export it.
    I hope I've managed to explain this problem in a way that makes sense, and will be very grateful for your help.
    Thank you very much.

    I'm having the same problem!
    Help! I don't know how to fix it & have spent so much time on this. I just don't know
    what's wrong! It have many video clips in my project & had noticed that the viewer
    window wasn't playing the events but didn't worry about it. Added more clips to
    my project, photos, music & then POOF! One by one the videos in the project are
    corrupted! Tried re-importing directly into iMovie then reinserting into the project.
    That works but another video will corrupt. Also tried copying project & erasing the
    original. That didn't work!
    To try to fix this I tried erasing the plist file thing that some threads mention. It
    didn't work. All the events are iPhoto videos - does this have something to do with
    it?!
    I don't know what to do & have many, many videos to process. I went out & bought
    FCE (Final Cut Express) to try to continue w/o iMovie but even when I've learned FCE
    iMovie will still have things I want to use!
    Anyone out here have the solution?? Maybe I should re-install iMovie...

  • Fixing Corrupt Video Files

    Hi All,
    So I think I may really be up the river. The other night, I recorded a conference in the DVCPRO 50 codec through Adobe OnLocation to a hard drive. As it turns out, when I try to play the files, I get the error message "this is not a movie file," odd, as I know it is. What puzzles me more, is that each file is large enough that there is clearly something there. I've tried MPEG streamclip and compressor to fix the problem but to no avail. In my research, I've come across suggestions about the hex codes being messed up somehow - but I have no idea about any of that sort of thing.
    If anyone can help, I'd be in your debt forever (figuratively speaking, of course). But seriously, I need some help, and any would be greatly appreciated.
    Thanks,
    Matt

    For the sake of spreading knowledge, I found the solution here:
    http://forums.creativecow.net/thread/8/1026990

  • HT204382 What program do i need to play .MKV (matroska video) files?

    What program do i need to play .MKV (matroska video) files?

    To see them, I recommend VLC. It doesn't transfer videos, but you can see it

  • I need a help in reading video file of 80MB into ...

    Hello,
    I need a help in reading video file of 80MB into a vector storing ByteArrays in it.Please help me soon.
    Thank You

    Hello,
    I was able to solve my problem by thinking & my code goes as follows.I am trying to read a video file in my program.
    public Vector getFileMediaContent(RandomAccessFile fileObj){
         Runtime runtime = Runtime.getRuntime();
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    dataContent.removeAllElements();
    System.out.println("dataContent :"+dataContent.size());
    try{
    int size=(int)fileObj.length();
    if(size<2000000){
    byte[] data = new byte[size];
    fileObj.read(data);
    dataContent.addElement(data);
    data=null;
    System.gc();
    else{
    int fixedsize=2000000;
    int startindex=0;
    int read=0;
    int remaining=0;
    while(read!=-1){
    byte[] data=new byte[fixedsize];
    read=fileObj.read(data,0,data.length);
    dataContent.addElement(data);
    startindex=startindex+data.length;
    remaining=size-startindex;
    fileObj.seek(startindex);
    data=null;
    System.gc();
    if(remaining>0 && remaining<2000000){
    byte[] data1=new byte[remaining];
    read=fileObj.read(data1,0,data1.length);
    dataContent.addElement(data1);
    data1=null;
    System.gc();
    System.out.println("outside while");
    System.out.println("dataContent 1 :"+dataContent.size());
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    fileObj = null;
    System.gc();
    }catch(Exception e){
    e.printStackTrace();
    return dataContent;
    Now I am not facing the problem of IndexOut of Bounds Exception But I am getting Out of Memory Error.
    Can You suggest me to come out of this,.
    As I know I have two solutions.
    1.Make the objects Null which is using more space & call System.gc();
    2.Increase the Virtual Memory of my System.
    Any solutions other than this?
    And How to Increase the Virtual Memory?Please do reply.
    ThankYou

  • Is there a program that converts Quicktime video files into Media Player?

    Is there a program that converts Quicktime video files into Media Player video files?
      Windows XP  

    Windows Media Player on a PC plays avi and mpg in addition to the WMV and ASF files so you can either use a Windows program that generates those files from .mov format or you can use QT Pro to convert the .mov to uncompressed avi and then use Windows Media Encoder to make WMV files. Although it may be out there no one here has mentioned a PC program that converts directly from .mov format to WMV. There is a program for Mac OS that does it and I believe that company is working on a version for Intel Macs so it wouldn't be much of a stretch for them to port it to Windows.

  • Fixing corrupt JPG files

    Is there any good software out there for fixing corrupt JPG files?

    Corruption damage in a .JPG entails data loss and the JPEG format does not contain redundancy, so there's no way to recover what's lost. Usually if the damage is found towards the end of the file, you can "recover" the good part by truncating it. If you want to do it interactively, you can try using software such as [The Gimp|http://www.gimp.org>, or its (very) expensive brother, Photoshop.
    To do it automatically (batch mode) you can investigate if any of the tools in the [Image Magick package|http://www.imagemagick.org/script/index.php] helps. Note that these are command-line Unix tools.

  • "zip" Terminal command no help fixing corrupt zip file; any other workarounds?

    I downloaded a ".zip" file containing some files that I need to access.
    When I double-click on it, I get the "Unable to unarchive 'xyz.zip' into '[foldername].' ( Error 1 - Operation not permitted )" message, which many people report when they try to open a corrupt zip file.
    I also tried opening the file with "StuffIt Expander," "Archive Utility," and "The Unarchiver," as well as some specialty zip-compression programs, but none were successful.
    I then installed the very useful "Archive.qlgenerator" plugin (http://homepage.mac.com/xdd/software/archive/) which allowed me to at least see inside the zip file using OSX's "QuickLook" feature. Lo and behold, all the files that were supposed to be in the zip file are indeed in there, as they should be. The problem is not that the zip file is empty, the problem is that it has become corrupted somehow.
    So, what I need to do is either "fix" the corrupted zip file, or alternately find some way to extract the needed files using brute force.
    Following tips given on various forums, I tried using OSX's "zip" command in terminal (http://homepage.mac.com/kelleherk/iblog/C1901548470/E731143104/index.html and http://hintsforums.macworld.com/showthread.php?t=132146). I was able to use it properly, but unfortunately neither the "-F" nor the "-FF" commands were of any helping in "fixing" the zip file. The "-F" command incorrectly said that the zip file was empty and that there was nothing to fix; the stronger "-FF" command came back with
    Could not find:
      xzy.z01
    Hit c      (change path to where this split file is)
        s      (skip this split)
        q      (abort archive - quit)
        e      (end this archive - no more splits)
        z      (look for .zip split - the last split)
    or ENTER  (try reading this split again):
    ...but none of the options produced any result. Pressing "z" gave me
    Could not find or open
      xyz.zip
    ...which means that even "-FF" could not get past whatever problem had corrupted the file.
    So: is there any built-in way for Mac OSX to fix or extract the contents of a zip file corrupted like this?
    Alternately, is there any third-party shareware or freeware that will do the trick?
    (I don't want to have to spend big $$$ on a commercial program since all I need to do is open a single zip file. And there is no way to contact the zip file's original creator, so I can't download an uncorrupted version.)
    Any help would be greatly appreciated.

    Mark:
    When I try your first suggestion in Terminal ("unzip -t /path/to/file"), I get this message:
    Archive:  /xyz.zip
      End-of-central-directory signature not found.  Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive.  In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
    unzip:  cannot find zipfile directory in one of /xyz.zip or
            /xyz.zip.zip, and cannot find /xyz.zip.ZIP, period.
    When I try your second suggestion ("unzip -l /path/to/file"), I get the exact same error message. (And yes, I am fixing "/path/to/file" to be the correct path to the actual file).
    And no, it is not really part of a multi-part archive. (Or at least it wasn't supposed to be; only one zip file is available, and there was only supposed to one.) Perhaps the zip was mis-encoded in the first place, so that the person who created it accidentally did something wrong which the unzip applications are interpreting as this file being part of a multi-part archive; but even so, all I have is this one file, so I need to fix it as is, or extract its contents as is, since I have no way to contact the original creator to do it right this time.

  • What is the best program for splitting large video files (for archiving)?

    I have just finished a project and I want to back up everything to DVD-R discs, including all my capture files and completed movies exported from Final Cut. Some of the files are 5 or 6 Gb, too large for one DVD-R disc.
    I tried downloading a program called MacHacha, and did a test on one file, splitting it into 3 segments and then joining it back together with the same program. The resulting file should have been a duplicate of the original, but it was not. It was not even recognized by QuickTime Player as a .mov file.
    What program do you use for this purpose? What program is reliable for this and produces a joined file that is identical to the original?
    Thank you for your reply.

    Thank you for your help and suggestions. I tried a couple of experiments with a video file that has chapter markers. This was created in FCE using the "Export - QuickTime Movie" command.
    One experiment was to bring the file into a new, blank sequence in FCE. Then export it right back out as a QuickTime movie. The resulting movie appears to be identical to the original, except that there are no chapter markers any more.
    The second experiment was to make a duplicate of the original sequence which I used to make the movie in the first place. In this duplicate, I deleted everything except the chapter markers. I then brought in the video file into that sequence and exported it. The resulting file appears to be identical, and this one does have the chapter markers.
    The only problem with doing it that way is that I lose all my edits. What if I wanted to edit something or adjust one of my original edits? I can't go back to that stage, with all my original edits, if I don't have all the original source files.
    In addition, it's not clear to me exactly how I would use FCE as the "splitting program." How do you split a sequence into smaller parts?
    All I really want to do is take a "snapshot" of the entire project, including all the source files, capture scratch files, etc. I don't need to back up the render files because those can easily be re-rendered. The entire project is taking up about 72 Gb on my hard drive, and I want to offload the whole thing. Even if it takes me 20 DVD-R discs to do it, that's no problem. Someone must have come up with a program or solution to do this.
    Thanks!

  • ITunes corrupting video files on metadata changes

    I have some video tutorials that I've been attempting to add to my iTunes library so I can watch them on my iPhone and appleTV.
    The videos copy into my library successfully. They play fine on my mac / phone / aTV as long as I don't change any metadata.
    But as soon as I try and change some metadata...
    Well, things are getting weird.
    Sometimes I've been able to change the metadata on the file without any issue. However, most of the time, I make a change (album art, title, album name) that results in a pinwheel. The program seems to hang for a bit but then makes the change. Everything looks fine and until you try and play the video which will no longer play. Not in iTunes. Not in the finder. Nothing. Even opening the file in iTunes causes the program to crash.
    I'm a little confused, as I've been able to add videos before and make changes to every bit of metadata that my heart desired with no issues.
    I'm even more confused that the problem is intermittent and while this problem happens 90% of the time, it miraculously doesn't when I try to show / explain what's happening.
    It seems to me that there's most likely something wrong on my end within my iTunes library, but I'm not shure where/how to start troubleshooting.
    Anyone with any ideas or advice, your comments and suggestions are valued and appreciated. 
    Thanks,
    Ian
    ps. I'm running the most current build of Lion and iTunes.

    Hi all,
    same problem here, but in a windows (shame on me...) network:
    * Two PCs w/ Win 7 64-bit
    * iTunes 10.7.x
    * iTunes library on a D-LINK DNS-320 (firmware: 2.02.x)
    After editing metadata of video files (adding art, changing title OR adding some details like year) the file is corrupt and will no longer play: not in iTunes, not in Quicktime, neither VLC nor MPC or any other Windows video software.
    This happens always(!), it doesn't matter what PC I use to edit the metadata. Doesn't matter, which video encoder (Freemake, Aisee, even Quicktime and it's ATV-profile) I use. The original video input format doesn't matter.
    Downgrading the D-Link firmware to 1.9 and/or iTunes to 10.6 doesn't give a result.
    Today even some mp3 got corrupted after adding cover art. Therefore i can't believe the file size is the reason.
    Maybe this is a hint: In Windows Explorer (something like the finder on a mac) I can't change the owner nor the user rights of the (corrupted or not yet corrupted) file. Is there any problem known relating to iTunes read-write-ability and NAS user rights whr storing the iTunes library on an external HDD?
    What about the library size or the amount of media objects (130 movies, 500 TV Shows, 15000 mp3, ...)?
    Any ideas or solutions anyone?
    Or a good mp4-tagger (incl. cover option) for Windows?
    regards,
    martin

  • Need help compressing 140 minute video file for DVD+R

    Hi folks,
    I am self-teaching Final Cut Studio and DVD Studio Pro. I must admit, the manual is not helping me with some key areas.
    My first test in burning a DVD was to load a QT file into FCS then burn it to a standard DVD+R. Now, those say 120 minute capacity of course, so I wanted to compress the file.
    I exported to Compressor and chose the DV 120 Minute option the first time. When that did not work I tried the 150 Minute option. Since it takes 3-5 hours for the DVD to burn on my new G5 Dual 2.0, that is all I have had a chance to try so far.
    Since neither is working, I assume I am missing a step either in Compressor or in loading the file into DVD Studio Pro.
    It burns all the way to 99% and then says '127.5 MB needed to complete' or something like that - in yellow lettering. I take it to mean the video file needs to be 127.5 MB smaller for it to work. I could cut a few minutes out, but that isn't the point.
    Can anyone please direct me to either a page in the manual or assist me through this forum as to what error(s) I am making?
    Thanks in advance,
    Fred

    What type of audio are you encoding to? If you're using uncompressed PCM/AIFF you're going to have trouble putting 140 minutes of video on a single-layer DVD (i.e. the quality will have to be pretty low). The preset titles for Apple's settings are calculated based upon compressed Dolby AC-3 audio -- not uncompressed PCM/AIFF. Thus, the so-called 150 minute preset will only produce about 120 minutes of capacity if you are using uncompressed PCM/AIFF audio.
    If you want to put 140 minutes of video with audio on a single-layer DVD you're either going to have to use Dolby/AC-3 audio or create your own custom preset to use with PCM/AIFF audio.
    However, if you are using compressed Dolby/AC-3 audio (only) then you may just be seeing an inaccuracy in Apple's preset targets (size). In that case just lower the target or average bitrate slightly so that you can fit your 140 minutes on the DVD. Just make a copy of Apple's 150 minute preset and tweak the bitrate slightly down (since that preset seems to be getting close to your target).

  • Corrupt video files for iTunes

    This has been an ongoing problem that has gotten worse. I have several video files made from various sources (FCP X and Adobe Premiere) all formatted for an AppleTV with the .m4v extension on them. They work when I set them and add them to the iTunes library. Plays fine. Occasionally I will scroll through my library and see a generic gray film icon for the video. I click on it, nothing happens. It will not play. Selecting Show in Finder shows the file, which looks to be about the correct file size. The icon for the video file is a blank dog-eared document, which should not be. I can't preview it or load it into any video editing or compressor application.
    What is happening to my videos? Random corruption of these files is certainly not acceptable. And yes, I ran DiskUtility. It doesn't happen to all the self-made video files, just some here and there. Never has happened that I can see with any of the major videos I have downloaded from iTunes. Only the stuff I create and add to the library. Sooner or later, it will liekly happen to other video files.
    Any ideas as to what is going on?  Any thoughts on how to recover my videos aside from backups?

    Update: I tried loading in to every video application I have. Even MPEG StreamClip and it had to be forced to open the file. It did so, but at the very end jumpedout indicating it couldn't find any video or audio tracks.
    I have done nothing to these files other than let them sit on the drive. Every now and then one or two of them just reandomly corrupts. What's causing this?

  • Getting a Rendering Error "No Video in File" and now corrupted video file

    I've been working with some video footage in Final Cut that I recorded directly to my hdd using adobe Onlocation. I used the chroma key filter on it and then added an animation clip from After Effects, in the form of a .mov file to my timeline. When trying to render my timeline I get the "no video in file error."
    I used the render manager and trashed all the render files, then I manually searched my hdd and trashed any other render files I could find. Still getting the same error message. Gave up and decided to start from scratch except that now my original video file that I recorded with Onlocation is corrupted and I can't preview it in Quicktime nor play it in Onlocation. It also imports into final cut as a white screen.
    This is the only copy of the file I have (I know, stupid me right?) so any help or suggestions would be greatly, GREATLY appreciated.

    Thanks so much for your suggestions, the File Salvage option from digital rebellion worked!! Good as new!! made a backup and going to attempt to complete my project, but any ideas on why adding the AE clip to the timeline caused the corruption of the video file in the first place?

  • ITunes is corrupting video files

    iTunes (7.2) have been corrupting some of my video files (mp4) and the video tracks are no longer available. I just can listen to the audio tracks.
    I opened the files in QT, and got the same result: no video, just sound.
    This just started to happen today. I haven't upgraded iTunes or installed anything, this is just bizarre. I've lost 5 movies so far. Files had been working for 6 months, and this never happened before.
    Funny thing is file dates appear as modified today, but I haven't "modified" anything, I was just watching some videos in an iTunes playlist and video began to fail.

    Hi all,
    same problem here, but in a windows (shame on me...) network:
    * Two PCs w/ Win 7 64-bit
    * iTunes 10.7.x
    * iTunes library on a D-LINK DNS-320 (firmware: 2.02.x)
    After editing metadata of video files (adding art, changing title OR adding some details like year) the file is corrupt and will no longer play: not in iTunes, not in Quicktime, neither VLC nor MPC or any other Windows video software.
    This happens always(!), it doesn't matter what PC I use to edit the metadata. Doesn't matter, which video encoder (Freemake, Aisee, even Quicktime and it's ATV-profile) I use. The original video input format doesn't matter.
    Downgrading the D-Link firmware to 1.9 and/or iTunes to 10.6 doesn't give a result.
    Today even some mp3 got corrupted after adding cover art. Therefore i can't believe the file size is the reason.
    Maybe this is a hint: In Windows Explorer (something like the finder on a mac) I can't change the owner nor the user rights of the (corrupted or not yet corrupted) file. Is there any problem known relating to iTunes read-write-ability and NAS user rights whr storing the iTunes library on an external HDD?
    What about the library size or the amount of media objects (130 movies, 500 TV Shows, 15000 mp3, ...)?
    Any ideas or solutions anyone?
    Or a good mp4-tagger (incl. cover option) for Windows?
    regards,
    martin

  • How to fix corrupt dll files

    Hi,
    Happy New Year!
    May it bring all of us, Good Health, Happiness, Harmony & Prosperity!
    I will like to let you know that a few month back, I bought this S10-2 directly from Leveno, USA, but regrettably with in a a few days, I realized that this machine has the following problems:
    1) The "dll files" are corrupt, details are as follows:
    advpack.dll
    dnsapi.dll
    gdi32.dll
    msv1_0.dll
    2)  Power Options:  Control Panel / Power Options / Advance (Power buttons) has 3 options (default)
    a) When I close the lid of my portable computer : Stand by
    Kindly note that when I do this my system enters the stand by mode but after an hour or two even when the lid is close position, it wakes up again which I feel is a mall function and need a fix.
    I will also like you to know that as of date I have repeatedly restored the machine to Factory Settings with a hope to fix the above problems but in vain as such I thought of approaching this august forum not only to educate myself as to how the files got corrupt but also to find a permanent fix, if possible?
    Since I am out of USA where warranty facility can't be availed, hence I do look forward to hearing from a guru, who can bail me out!
    Thanking you in anticipation and may God bless you!
    Warm regards,
    Anwar

    Hi and welcome to lenovo forum...
     wish you a happy new year ...
    That could help BIOS 22 for S10-2  why ?
    1ACN22WW  1.Fixed abnormal resume from standby mode issue.
    Installing the package in Windows.
    ======================
    1.  Locate the file 1ACN22WW.exe that has been downloaded.
    2.  Double click the 1ACN22WW.exe icon.
    3.  Click install
    4.  Click flash bios
    5.  Press Enter to start flashing. During the process, you are advised not to turn off the computer.
    6.  When the update finishes, the computer will automatically reboot for the changes to take effect.
    prefer to update BIOS ...after that procedure ...recover to factory  again...that should fix that prob...
    sincerely KalvinKlein
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

Maybe you are looking for

  • Nested af:forEach loop

    Hi, How can i use nested af:forEach loop. I can't use af:iterator for sure, please provide solution only using af:forEach. <af:forEach items ="#{bindings.parentVO.rangeSet}" var ="parent"> <af:forEach items ="#{parent.chidVO}" var="child"> <af:output

  • Use iframe to display part of page

    Hey Guys, I'm trying to use an iframe on my site that shows our page on another site. However, I want to leave out the other sites banner and sidebar, as it just takes up too much space. In this case, I'm trying to use the iframe to only display a si

  • Suppress BDC success message

    Hello Everyone, I have a kind of problem with running BDC transaction. I donu2019t know how get rid off success status message. I run MD03 transaction. Like this: PERFORM bdc_transaction TABLES messtab USING 'MD03' ctu mode update. Where  CTU is set

  • Upgrading Photoshop Elements 10 from existing 8.

    I purchased an upgrade --- Adobe Photoshop Elements 8 upgraded to Elements 10. Apparently I did download 10 successfully. However, when I log into my existing Elements 8 to upgrade, I receive a message saying essentially it would not install (forget

  • Spotlight's blind spot: Spotlight comments on Disk Utility disk images.

    Has anyone but me noticed that Spotlight goes blind to Spotlight Comments once the files are moved into a 256-bit encrypted read/write disck image created with Disk Utility? I don't have iPhoto, and I keep photos in too many categories for that anywa