Corrupted files on import from eyefi

I am not sure this is an aperture problem or an eyefi problem but I have noticed that about 1 in ten pictures I import from my eye fi card are corrupted, they look fine in the camera, and on the initial priveiw, but after processing, they are corrupted, sometimes just the bottom, sometimes the entire image, I have gone back and looked at the .nef raw file and it is corrupted also.
I have the pro 8 gig eyefi card, and before I go screaming to them, I wanted to make sure that they are the problem
I don't seem to see this on any of my other SD cards.
Anyone have any idea?

Hello I did buy a Eye Fi mobi a few weeks ago, but i am using Lightroom and is the same problem,  and using a ricoh gr and a nikon d800 and is the same. and i sue a regular sd card, and no problem.

Similar Messages

  • When my new MacBookPro/Lion awakes from sleep I get network Diagnostics telling me I'm not connected to the internet. After I step through ND it says connection is fine and I can connect. software bug? Corrupted file carried forward from my old Mac?

    When my brand new MacBookPro awakes from sleep it has lost its internet connection. It goes to Network Diagnostics and I need to step through all the pages to get to the end where it says connection is o.k. Is this a bug in Lion or could it be a corrupt file migrated over from my old MacBook Pro which would frequently lose its Airport connection and couldn't be reconnected until it cooled down. (This one always shows full bars on the Airport indicator).

    That's definitely just paranoia.  First, because in sleep mode, there's no internet connection.  The computer might as well be turned off as far as the network is concerned, and there's no activity in the computer other than a bare trickle of electricity to maintain the RAM.  The processor is doing nothing.
    Second, Macs are quite difficult to hack, and if you're on a wireless network, the wireless router protects you from incoming attacks from the outside world.
    Of course, you should be able to leave Safari open with no open windows and not affect your ability to get online when it wakes up.  If you can reproduce that reliably, and if I can as well (haven't had a chance to try it yet), then it should be reported to Apple.

  • How to pick up file to Import from server instead of client PC??

    I have this code that picks up a file from client machine and processes the file . The code works fine when deployed on local tomcat deployment. But on remote server deployment , behaves differently . its looking for the file on the server How can I change the below code to look for the file on the client ??
    Please help .. any suggetion will be greately appreciated..
    Java code :
    public String importProdCredit() throws Exception {
    FileReader in = null ;
    StringTokenizer st = null;
    String record = null;
    String[] fieldValue = new String[30];
    BufferedReader br = null;
    int x = 0 ;
    FacesContext ctx = FacesContext.getCurrentInstance();
    //HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse();
    HttpServletRequest request = (HttpServletRequest) ctx.getExternalContext().getRequest();
    Date currentDatetime = new Date(System.currentTimeMillis());
    String StartTime = formatter.format(currentDatetime);
         int maxMemSize = 900000;
         long maxReqSize = 1000000000;
         //String fileDir = "/home/working/tmp/";
         boolean writeToFile = true;
         //String fileName = "deals.txt";
         String from = "";
         String files = "";
         String tmpStr = "";
         String comment = "";
         int num = 0;
         //     Check that we have a file upload request
         boolean isMultipart = FileUpload.isMultipartContent((HttpServletRequest) request);
         ServletOutputStream out = null;
    //     OPEN FILE
         fileName = fileName.replaceAll("\"", "\\") ;
    //     added code for export pc_
         File inputFile = new File( fileName );     
    try{     
              in = new FileReader(inputFile);
              br = new BufferedReader(in);          
         } catch (FileNotFoundException ex ) {     
              ex.printStackTrace();
              genUtils.displayError("Invalid file name or file does not exists");          
              return "-1";
    JSP:
    <%@ taglib uri="/WEB-INF/fmt-1_0.tld" prefix="fmt" %>
    <%@ taglib uri="/WEB-INF/jsf_core.tld" prefix="f" %>
    <%@ taglib uri="/WEB-INF/html_basic.tld" prefix="h" %>
    <%@ taglib uri="/WEB-INF/c-1_0.tld" prefix="c" %>
    <%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
    <html>
         <head>
              <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
              <META name="GENERATOR" content="IBM WebSphere Studio">
              <META http-equiv="Content-Style-Type" content="text/css">
              <LINK href='<%= request.getContextPath() + "/theme/Master.css" %>' rel="stylesheet" type="text/css">
              <link type="text/css" rel="stylesheet" href='<%= request.getContextPath() + "/theme/prodcredit.css" %>'>
              <title>Trade Ledger Ajustment Import</title>
         </head>      
    <body>
    <script language="JavaScript">
         <!--
         javascript:window.history.forward(1);
         //-->
    </script>
    <f:view>
    <h:form id="TradeAdjustmentImportForm" >
    <table width="900" class="tableform" >
    <caption class="searchcaption" > Production Credits Deals File Import : <h:messages id="Messages" errorClass="errors" globalOnly="false"/> </caption>                
    <tbody>               
         <tr class="formtr" >
              <td class="td" style="color: red"><strong>Enter File to Import</strong></td>
         </tr>
         <tr class="formtr">
              <td nowrap align="left">           
                   <h:outputText id="fileImportTxt" value="File Name : " />           
                   <h:inputText id="fileName" value="#{ProdCreditUtilities.fileName}" styleClass="field-value" />           
    </td>
         <td nowrap align="left">                          
                   <h:commandButton id="importFile" image="images/import.gif" styleClass="commandButton" action="#{ProdCreditUtilities.importProdCredit}" type="Submit" immediate="false" />               
         </td>
    <tr><td> </td></tr>                         
    </tbody>     
    </table>

    BufferedReader br = null;
    int x = 0 ;
    FacesContext ctx = FacesContext.getCurrentInstance();
    //HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse();
    HttpServletRequest request = (HttpServletRequest) ctx.getExternalContext().getRequest();
    Date currentDatetime = new Date(System.currentTimeMillis());
    String StartTime = formatter.format(currentDatetime);
    int maxMemSize = 900000;
    long maxReqSize = 1000000000;
    //String fileDir = "/home/working/tmp/";
    boolean writeToFile = true;
    //String fileName = "deals.txt";
    String from = "";
    String files = "";
    String tmpStr = "";
    String comment = "";
    int num = 0;
    // CHECK THAT WE HAVE A FILE UPLAOD REQUEST
    boolean isMultipart = FileUpload.isMultipartContent((HttpServletRequest) request);
    ServletOutputStream out = null;
    // OPEN FILE TO DO PROCESSING
    fileName = fileName.replaceAll("\"", "\\") ;
    // added code for export pc_
    File inputFile = new File( fileName );
    try{
    in = new FileReader(inputFile);
    br = new BufferedReader(in);
    } catch (FileNotFoundException ex ) {
    ex.printStackTrace();
    genUtils.displayError("Invalid file name or file does not exists");
    return "-1";
    JSP file
    <f:view>
    <h:form id="TradeAdjustmentImportForm" >
    <table width="900" class="tableform" >
    <caption class="searchcaption" > Production Credits Deals File Import : <h:messages id="Messages" errorClass="errors" globalOnly="false"/> </caption>
    <tbody>
    <tr class="formtr" >
    <td class="td" style="color: red"><strong>Enter File to Import</strong></td>
    </tr>
    <tr class="formtr">
    <td nowrap align="left">
    <h:outputText id="fileImportTxt" value="File Name : " />
    <h:inputText id="fileName" value="#{ProdCreditUtilities.fileName}" styleClass="field-value" />
    </td>
    Can you help me change this code to work with <input type="file">
    I am not that familiar with JSP and HTML . I am a database coder trying to get this fixed.
    Your help is greatly appreciated.
    Thanks
    Ricky

  • Aperture 3.1.2 leaves ..importing.* files after import from camera

    Hi all,
    I keep all my files in a folder named Referenced Images. That folder has started accumulating a large number of files of the form
    ..importing.IMG_8540.JPG_
    One such file for every image I have imported from my camera into Aperture. I assume I can delete them since the file is in the folder, but why are they there in the first place?
    Thanks,
    Scott

    Hi, have you tried updating to 3.1.3 to see if this still occurs?

  • Sound missing on some files after import from DV camcorder

    Hi everyone,
    As a new user to Macs grateful if you can help.
    When importing to imovie 08 from a DV tape, some clips go fine, others are then missing the audio. Also some clips have audio and playback OK initially, then have audio missing after closing and re-opening imovie. Is this a bug? What should I do? Many thanks

    Hi,
    I had a simular problem. To solve it I went about 5 seconds into the footage and started importing from that point, not the start of the tape.
    What caused the prob? My only guess is the tape I was using was fairly used and right at the start of my tape I had some old footage for less than a second. When the new footage kicked in the sound went.
    Hope this helps.

  • Overly Huge Files when Importing from DVC tape to IMovie

    When importing from my Canon ZR 600 60 minutes of tape equals 16.1 Gigs
    I am looking for what I am doing wrong I have 10 hours of Disney I would like to turn into 5 dvd set not 15 dvd set. Any help would be greatly appreciated.

    Hi Gregory
    About 13-14 Gb per hour miniDV tape movie is as iMovie (QT) works. When
    it is stored down to a DVD disk it will be converted into a working format for
    DVD disks and that will mean that 1 hour will take up a DVD disk in max
    quality and 2 hours in slightly less quality. iDVD doesn't care about how
    many Gb Your movie takes up in iMovie or FinalCut JUST the amount of minutes
    this includes the DVD menues that also need spaces.
    55 min movie and 5 min for menues is OK in max qual.
    115 min + 5 for slightly less.
    You also need to think about how much free space there is on Your hard disk.
    After Your 115 min movie is ready to go to iDVD there should be about 20Gb
    free space left or iDVD will run into problems.
    Yours Bengt W

  • Any way to rename files when importing from camera with iPhoto?

    I have a naming scheme that I've used when importing photos from my camera (e.g. 2008-09-12-Event ). I can't create a custom folder (in Pictures but outside iPhoto Library) or rename things when importing with iPhoto - is that right? I can't find any advanced options to import ...
    If I want this (and don't want to use Adobe Bridge CS3), do I have to get Aperture?
    Thanks -
    Alexa
    p.s. I haven't really figured out WHERE my photos go with iPhoto? I've been editing in Photoshop Elements 6 but then have to "Save As" to replace the file - saving it doesn't do it (I think that sends it to the iPhoto library somewhere?) Eek...

    Alexa:
    You might consider this workflow:
    1 - using either Image Capture or a card reader upload the images to a folder on the desktop.
    2 - name the folder with a brief description of the shoot. I use a short date and description: 08/01/08-Dinner at Toad Hall
    3 - use a file renaming application like Resize! to batch rename the files to your specification. I use the international date (for the capture date) and a brief description: 2008-08-01-Dinner at TH-001.jpg.
    This allows for good chronological searching and sorting as well as text searching on the description. It also avoids duplicate file name issues in the future. Granted a few extra steps up front but saves me a lot of time later on.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How can I stop i photo corrupting files on import

    When I import photos from a card reader some import and some are not imported and I get the unrecognised file type rubbish and invalid data mesage. Of the files that are imported some are corrupted and the image is partially split i.e it looks as though it has been cut in two and the two halves displaced relative to each other. Now if I try and open these directly into photoshop from the card reader they generally open fine.
    If I plug the camera directly into the firewire slot they import fine either RAW or jpegs.
    I have changed the card reader but this has not solved the problem
    I have done the permissions repair process ad nauseum and deleted the com.apple iphoto plist file without success.
    The card rwader will work fine on a pc running windows. I cannot believe that windows does something bhetter than my mac
    System is G5 Powermac with OSx Tiger, 1 gb RAM and iphoto 5 with the latest updates
    Any help would be gratefully recieved as I am becoming demented.
    Steve

    Steve,
    What card readers are you using? I have read here on the discussions of problems with some card readers. If you post the name of the readers maybe someone with the same reader will post to help you or give you more info.
    Lori

  • LR5 corrupt files on import

    When importing some JPG files into Lightroom 5, it is claiming it cannot generate a preview, and then on import claiming they are corrupt.
    However, these files import with LR3, and open with Photoshop, Picasa, OSX Preview. The images and metadata all appear to be fine.
    Other photos from the same camera and shoot import correctly into LR 5.
    What could the issue be?
    And how do I get LR5 to correctly import these files?

    The later file you just posted, that LR5 thinks is ok, does not have GPS info added to it and includes many camera maker-note fields, and has XMP data version 5.2.
    The first one, that LR5 has issues with, has GPS data and does not include any maker-note fields and the XMP infor is version 5.1.
    Pehaps the program that geocoded the file also remove something LR5 wants to see, though the strange thing is that earlier versions of LR think it is ok.
    According to an Adobe blog, a bug-fix version of LR5 will come out later this week, perhaps at Adobe Labs:  http://labs.adobe.com/ so try that new version and see if things are different.  If not then it would probably be worth re-posting this issue immediately after the release, because that is when Adobe employees seem to be watching closely.  Right now they probably aren’t caring too much because they’ve already fixed many things.

  • Address Book NOT accepting csv.txt file as import from EARTHLINK web mail

    Greetings. Unsuccessful thus far in importing e-addresses from Earthlink Web Mail to MAC Address Book. Found preferences and saved Earthlink addresses as csv.txt file but AB rejected as not true csv. Apple suggested conversion to V cards but could not find that option in Earthlink-ville. Perused Allan's post on synching with Total Access but fear accidentally installing stuff on my MACbook Pro from that application that is unneccessary or will screw up my new MAC world. Although in the long run, having Web mail back up my MAC makes sense. (Work and husband remain PC/ XP.)
    Any solutions you can offer will be much appreciated.
    Macbook Pro   Mac OS X (10.4.9)  

    Thanks again. Okay, I pasted a portion of the csv file . I might be mistaken here, but I don't think these are V card format and perhaps converting them to V cards is what I'd have to do. But I would need pretty explicit directions.
    Regards,
    Andrea
    "First Name","Last Name","Middle Name","Name","Nickname","E-mail Address","E-mail 2 Address","E-mail 3 Address","Home Street","Home City","Home Postal Code","Home State","Home Country/Region","Home Phone","Home Fax","Mobile Phone","Personal Web Page","Business Street","Business City","Business Postal Code","Business State","Business Country/Region","Business Web Page","Business Phone","Business Fax","Pager","Company","Job Title","Department","Office Location","Notes"
    "[email protected]","","","[email protected]","","[email protected]","","","","" ,"","","","","","","","","","","","","","","","","","","","",""
    "Thomas","Brown","","Thomas Brown","","[email protected]","","","","","","","","","","","","","","",""," ","","","","","","","","",""
    "Bob","Nash","","Bob Nash","","[email protected]","","","","","","","","","","","","","","","", "","","","","","","","","",""

  • Not all files will import from NAS Synology Server to PC running LR 5.3

    We recently moved our photos to a new Synolgy NAS server. I have a Lenovo all in one and installed the latest version of LightRoom 5.3. When I import my photos, not all of them get imported, only a fraction of them. I can see all the photos on the server via the run command but after I import not all the photos get transferred over. Does anyone else have this issue? What would cause this bottle neck?

    Well, well what do you know.. it just came up..
    I moved all files from the LR folder except the catalog, rebooted and it came up...
    I guess the next thing to do is to get the previews back.
    Hope this is a good sign...

  • Does OS X corrupt files when copying from SD card to desktop?

    Using finder to copy a folder and its files from SD card to mac desktop seems to cause *some* files to be corrupted, specifically a handful of MP4 files from a FAT32 SD card  which was used in a digital camera. Using a binary/hex comparison tool reveals that some segments of the files contents were modified when copied from the SD card. 
    This error occurs when copying multiple files using Finder windows.  However, when copying the same files one at a time, the corruption does not occur.  This appears to be an OS level bug.  In reviewing past content, I found that dozens of MP4 files have been corrupted in the past 4 months by merely copying the files from the SD card to mac desktop using Finder copy/paste.
    I am using OS X Mountain Lion 10.8.3

    Well, like I said, the byte size in fact did *not* change.  So I'm not even concerned about that.  What *did* change is the content of those bytes and it doesn't matter what operating system you are using, the content of those bytes is *not* supposed to change.
    Also, like I said before, if I copy the individual file (MP4) insead of the entire folder, and then do the binary/hex comparison, the byte data is identical. i.e.
    a) copying one file at a time produces an *identical* file on the HD, i.e. the byte count AND the byte content are precisely the same.
    b) copying a folder with multiple files produces a *different* file on the HD, i.e. the byte count is the same BUT the byte content differs from the original file.

  • W520 - Lenovo Password Manager - Can .CSV or .DAT files be imported from other Password Managers?

    The title says it all!
    Currently using Norton Identity Safe's standalone password manager, but would like to start using Lenovo's instead. Attempted to import .DAT and/or .CSV files from Norton, but no option for these file types appeared in Lenovo's Password Manager.
    If not an option to import directly, is it possible to add one of the files to the location Lenovo stores the password manger entries?
    Solved!
    Go to Solution.

    Hello, 
    No you can't import .CSV or .DAT files into Password Manager. It uses a .PWM file format, and uses a 256-bit key Advanced
    Encryption Standard (AES) with Microsoft CryptoAPI. You can export your info to be used in another machine with the Thinkvantage Password Manager installed, but not from another password manager.
    More info here:
    Password Manager 4 Deployment Guide
    Cheers!
    ThinkPad W540 (20BG) - i7-4800MQ/24GB // ThinkPad T440s (20AQ) - i7-4600U/12GB
    ThinkPad T440p (20AW) - i7-4800MQ/16GB // ThinkPad Helix (3698-6EU) - i5-3337U/4GB
    ThinkPad W520 (4282-W4Q) - i7-2720QM/32GB // ThinkPad T400 (2767-W1C) - P9500/8GB
    ThinkPad T61 (7665-CTO) - T7700/4GB // ThinkPad T60p (8741-C2G) - T7400/4GB

  • Problems "locating" referenced files after importing from iPhoto.

    I recently began importing old iPhoto libraries to Aperture, mostly successfully, but have run into a couple problems locating referenced files. While the locate referenced files function worked for most of the photos, there are a handful of photos that, when I located the original file,  the time stamp was different (by 2 hours in most cases) and it was about 15% smaller than the file Aperture was looking for. As a result, even though it was clear from the thumbnails that they were the same images, Aperture doesn't even give me the option to Reconnect them.
    Aperture 3.4.5
    OS X 10.7.5

    . I use the Reconnect All button, but it only finds the one file, even when there are hundreds more in the same folder that are unlinked.
    Reconnect all works best, if you select all files that need reconnecting at once, and then select the first file in the list to reconnect. If the other files are in the same folder and are correctly named and match, then "reconnect all" should do it. But if the filenames differ, you will have to do it one by one.
    Also,  the files are all still correctly linked in iPhoto, but every single link is broken once I import it to Aperture.
    You are importing with "File > Import > Library", correct?
    That is supposed to work. Have you tried to repair your iPhoto Library before importing to Aperture?
    Use iPhotos First Aid Tools to repair:
    Try to repair the permissions, followed by repairing the library.
    To launch the First Aid Tools,  hold down the Command and Option keys ⌥⌘ while double-clicking the iPhoto library or the iPhoto icon in the Dock.
    The iPhoto Library First Aid dialog appears.  Select the Repair option you want to use - first "permissions", then "database".
    Léonie

  • Aperture 3 file-level import from iPhoto no longer working

    With Aperture-2 I was able to import photos from a (remote) iPhoto library (like on my wife's iMac). It showed the iPhoto events as folders, allowed me to unstack the edited ones -- it simply behaved like accessing photos in folders.
    Using Import/Files… in Aperture-3 hides iPhoto libraries, so there is now way to access the pictures inside.
    The option Import/Show iPhoto Browser… accesses my own (empty) iPhoto library. Ony if I double-click the remote iPhoto library, launching my local copy of iPhoto, I am able to see the remote pictures in the Aperture iPhoto browser. To import, I have to drag photos over to Aperture projects or albums.
    This was much easier in Aperture-2 !!
    Has anyone figured if this import method is still available in Aperture-3 ? Maybe I haven't found it yet.

    I have the same problem the screen is show something like this:
    And never stops and show any photo.
    In other way i want to use it to create an slideshow that scroll the map showing the photos, it is possible?
    An update soon to fix this problem...
    Thanks...

Maybe you are looking for

  • Issue regarding Form12A revised in Tcode - PC00_M40_PFE in HR abap

    Dear, I am using standard HR form: Form12A Revised in Tcode - PC00_M40_PFE with HR_IN_EPF12A_99M SAP Script Display output format, when I giving for print preview I found some columns like Worker's share,  Employer's share, Amount of administrative c

  • Mac mini and External Optical drives

    hi all, just wondering if i'll be able to use external optical drives with my mac mini which doesn't have a DVD writer, it detects and mounts in OSX, but can't playback a dvd or burn, do i have to use any third party software like roxio? any help wou

  • Show the custom popup window on clicking the people name in sharepoint people search result

    Show the custom popup window on clicking the people name in sharepoint people search result We are doing the below code to open a popup but while clicking on name link its postback the page and not opening the popup in first click but opening in seco

  • Incorrect encoding in tables of contents

    Hello, I have generated my Webhelp with RoboHelp X5 for word. The word document has been wrtitten on Russian. I review help with IE. The helps encoding is incorrect - I see strange symbols. Then I select in menu 'View' option 'Encoding' -> Auto - Sel

  • Design Studio 1.3 : one large generic Data Source or multiple smaller Data Sources

    Dear all, In DS 1.3, is it still a best practice to have one large generic Data Source ? Or is having multiple smaller Data Sources a better solution ? Minimizing the number of Data Sources remains a golden rule, but what is the best solution : One l