Treat JPEG files next to raw files as seperate files still imports and displays them as seperate images

Hi, I am taking RAW + JPEG files on a Nikon D810. The RAW files are saving to a CF (primary slot) and JPEGs to an Eye-Fi card (secondry slot). When I am importing into Lightroom 5 directly from the camera, even though I have 'Treat JPEG files next to raw files as seperate files' UNchecked in preferences, it still imports and displays them as seperate images. I am trying to import the JPEG as a sidecar file only to the RAW file as I have read about but this is not happening, any ideas why? Thanks

Well in Lightroom they are apart from each other before the actual import, all the JPGs list first then all the NEF files next. The same actual photo as the NEF or as the JPEG both have the same file name apart from the .JPG or .NEF so that is not the problem. The NEFs go to the CF card and the JPGs go to the EyeFi SD card, I think you are onto the issue but I'm not sure what I need to do to fix it. I guess I need to change a setting on the D810 itself. There really doesn't seem to be any other settings apart from the RAW + JPEG vs only one or the other and allocating which card is primary for the RAWs and which card is secondry for the JPEGs. I really need the JPEGs to go to the EyeFi SD (secondary) for live iPad image viewing and not to the same primary card (CF) as the NEFs (RAWs) go. This does seem to be a typical setup so I would think it has been encountered before.
Thanks for your help any other advise is appreciated.

Similar Messages

  • Flash CS6 cant open play SWF files without importing and destroying them, how can I get around this?

    Flash CS6 can't open play SWF files without importing and destroying them, how can I get around this?
    I'm just trying to preview an swf file in flash like I have with all previous versions.

    What if my SWF loads external content from an online server?
    Not only does the current flash player prohibit such activity, it doesn't even pop open an error anymore saying there was an error connecting to an online source.
    Normally, I would simply drag the SWF into Flash and all connections would go through.  I could see traces, errors, and experience no issues.
    Now I can't even do that.  So what then?  You have crippled a fundamental use of the program, but THANK GOD we have that deco brush that nobody asked for.
    And for the record, the nature of my work benefits from not necessarily allowing the Flash Player to connect to online content.  The error it pops up?  That's simply another method of error checking that I require.  Updating the Flash Player options is not an option.
    Why would you even remove this key feature from Flash anyways?  It's been there for years ... has the ratio of people importing SWFs (a rather useless gesture in an increasing OOP world) really outweighed the people using Flash as a testing environment that much?

  • Lightoom 5.7 not importing ALL jpeg files when importing

    Hello, I am repeatedly having issues with Lightroom 5.7 64 bit on Win 7 computer on the import option from a file on hard drive. The file has 40 pictures, mostly all jpeg...and after the import - add function, only about 20 are imported. I have tried this multiple times and it still happens. Any ideas would be appreciated.

    There is an option in the Lightroom preferences to treat JPEG's next to raw images as separate images. If that option isn't checked, and some of your images are raw files, the raw files will be imported but the JPEG images will not. So check to make sure you have that option activated.

  • How to accessing files in os and display as tree

    i have worked lot to access the files in os and display them as tree structure but could not suceed can any one help me

    * Light Development Java Library
    * Copyright (C) 2003, 2004 Ulrich Hilger
    * This program is free software; you can redistribute it and/or
    * modify it under the terms of the GNU General Public License
    * as published by the Free Software Foundation; either version 2
    * of the License, or (at your option) any later version.
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    package com.lightdev.lib.ui;
    import javax.swing.JTree;
    import javax.swing.tree.TreePath;
    import java.io.File;
    public class JFileTree extends JTree {
      public JFileTree(File root) {
        super();
        FileTreeModel model = new FileTreeModel(root);
        this.setModel(model);
      public JFileTree() {
        this(new File(System.getProperty("user.home")));
      private String parsePath(TreePath treePath) {
        int pathSize = treePath.getPathCount();
        String path = null;
        for (int i = 0; i < pathSize; i++) {
          if (path == null) {
            path = treePath.getPathComponent(i).toString();
          else {
            path += File.separatorChar + treePath.getPathComponent(i).toString();
        return path;
      public String[] getSelectedUrls() {
        int treepathAmount = getSelectionCount();
        TreePath[] treePaths = getSelectionPaths();
        String[] stringSet = new String[treepathAmount];
        if (treepathAmount != 0) {
          for (int i = 0; i < treepathAmount; i++) {
            stringSet[i] = parsePath(treePaths);
    return stringSet;
    return null;
    * Light Development Java Library
    * Copyright (C) 2003, 2004 Ulrich Hilger
    * This program is free software; you can redistribute it and/or
    * modify it under the terms of the GNU General Public License
    * as published by the Free Software Foundation; either version 2
    * of the License, or (at your option) any later version.
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    package com.lightdev.lib.ui;
    import javax.swing.tree.TreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.event.TreeModelListener;
    import java.io.File;
    import com.lightdev.lib.io.CustomFile;
    public class FileTreeModel implements TreeModel {
      public FileTreeModel(File root) {
        this.root = root;
      public Object getRoot() {
        return root;
      public boolean isLeaf(Object node) {
        return ( (File) node).isFile();
      public int getChildCount(Object parent) {
        File[] children = ( (File) parent).listFiles();
        if (children == null)return 0;
        return children.length;
      public Object getChild(Object parent, int index) {
        File[] children = ( (File) parent).listFiles();
        if ( (children == null) || (index >= children.length)) {
          return null;
        return new CustomFile( (File) parent, children[index].getName());
      public int getIndexOfChild(Object parent, Object child) {
        File[] children = ( (File) parent).listFiles();
        if (children == null)return -1;
        String childname = ( (File) child).getName();
        for (int i = 0; i < children.length; i++) {
          if (childname.equals(children)) {
    return i;
    return -1;
    * this tree model is not intended to be editable which is why
    * this method is not implemented
    * @param path TreePath
    * @param newvalue Object
    public void valueForPathChanged(TreePath path, Object newvalue) {}
    * this tree model is not editable and does not fire events which is why
    * this method is not implemented
    * @param l TreeModelListener
    public void addTreeModelListener(TreeModelListener l) {
    * this tree model is not editable and does not fire events which is why
    * this method is not implemented
    * @param l TreeModelListener
    public void removeTreeModelListener(TreeModelListener l) {}
    * reference to this tree model's root node (a File)
    protected File root;

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • With Netscape all of the Webcam shots from live feeds were automatically saved in my cache folder and I could simply open my cache send the saved files into AcDsee and convert them into jpgs, It would save as many as I would allow space for. With firefox

    I cant retrieve my images from webcams that are cached any more with mozilla. With netscape all of the live webcam images from live cams were automatically saved in my cache folder and all i had to do was open it send the files to acdsee and turn them into jpgs. It would save them untill the Cache ran out of room no matter how many files or sites I had running. Mozilla seems to save what it wants when it wants and often dose not save any that I can retrieve because I believe it is bulking them into Cache 123 or 4 and those i cant open to retrieve the files. Sometimes it saves 100 or so and sometimes 2 or 3 sometimes 10 or more but i don't seem to have any control over what it does or does not save to retrieve no matter how much space i allow for the cache to save.
    == This happened ==
    Every time Firefox opened
    == I finally gave up trying to keep netscape due to all the ridiculess popups and continued reminders from you saying i had to switch over

    You have or had an extension installed (Ant.com Toolbar) that has changed the user agent from Firefox/3.6.3 to Firefox/3.0.12.
    You can see the Firefox version at the top and the user agent at bottom of the "Help > About" window (Mac: Firefox > About Mozilla Firefox).
    You can check the '''general.useragent''' prefs on the '''about:config''' page.
    You can open the ''about:config'' page via the location bar, just like you open a website.
    Filter: '''general.useragent'''
    If ''general.useragent'' prefs are bold (user set) then you can right-click that pref and choose ''Reset''.
    See [[Web sites or add-ons incorrectly report incompatible browser]] and [[Finding your Firefox version]]
    See also http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • Is it possible to import and display/plot (Google Earth) KML files as overlays in Mac OS 10.9 Maps application?

    Is it possible to import and display/plot (Google Earth) KVM files as overlays in Mac OS 10.9 Maps application?
    Here is the particular application: (note I haven't gotten the code to compile yet -- seems to be several differently named environment variables in Mac unix than in Linux that are making the compile blow up -- but that's another issue) there is a freeware application that can do radio path loss prediction and plot path loss contours on a map. It has an option to output the data as KML files which can be imported into Google Earth, in order to display the path loss contours on Google Earth maps. I guess you could liken it to displaying overlays of GIS-like data in Google Earth. I would like to know if there is a mechanism to facilitate importing KML data files to overlay (preferably in a translucent fasion so that you could see the underlying map) onto Mac OS 10.9 Maps?

    varjak paw wrote:
    They're also known to patent things they never release. So while it indicates that they're investigating such things, a patent application is no guarantee that anything will ever come of it, much less be immanent. And that application was filed in 2012 and is really for something rather different.
    Regards.
    As I stated, "possibly."
    While the commerce side of it has little to do with the KML files, per se, the API for the layer data should allow for any type of overlay.
    Also, the patent was filed Dec 19, 2013. There was a related patent filed in 2012. Not sure what it is about.

  • Read numbers from a .txt file and display them in a graph

    How can I get Labview 7 to read from a txt. file containing a lot of
    coloumns with different datas? There`s only two of the coloumns that are
    interesting to me, the first, that contains the time of the measuring, and
    one in the middle, that contains the measured temperatures. I want Labview
    to read this datas and display them graphicly.
    Thanks from Stale

    Here's one way.
    You can also use the help-> find examples and search for "text".
    2006 Ultimate LabVIEW G-eek.
    Attachments:
    Graph.vi ‏21 KB

  • I somehow changed a video in my imovie to zero fps, so it just plays black.  The video still exists on my desktop but even when I delete the files from imovie and reimport them the file is still in zero fps and play black.

    somehow changed a video in my imovie to zero fps, so it just plays black.  The video still exists on my desktop but even when I delete the files from imovie and reimport them the file is still in zero fps and play black.

    I'm not sure of your question.
    Are you asking how to use Photoshop?
    Or are you asking for the dimensions of video iMovie uses?
    It edits in 720P HD, which is 1280x720.
    You can make it a bit bigger so you can zoom in.
    Much bigger then this is a waste of time.

  • How to retrieve xml file from BLOB and display on browser with css/xslt

    Hi All,
    I am new to xml. I am storing my xml file into BLOB in database. Now in my jsp page I want to retrieve this xml file from BLOB and display in HTML/CSS/XSLT form...
    Pl. guide me.. any docs..?? Logic...??
    Thanks in Advance.
    Sandeep Oza

    Hello Sandeep!
    I'm not familiar with jsp but logic should be as follows:
    -in jsp page instantiate XML parser
    -load specified BLOB into parser
    Now you may traverse the XML tree or you might load XSL file and use transform method to transform XML according to XSL file.
    I have an example where I'm selecting XML straight from relational database and then transform it using XSL into appropriate HTML output, but it's written in PSP.
    You can try http://www.w3schools.com/default.asp for basics on XML, CSS, XSL. It's easy to follow with good examples.
    Regards!
    miki

  • HT2470 how would i go about taking multiple files from documents and make them part of 1 master file

    how would i go about taking multiple files from documents and make them into 1 master file? I want to put all documents associated with this project together for easier access.

    From the finder window, click File, click new folder, you can drag all documents into that Folder making it the master folder. You can ajso drag folders into the Master folder, and have them as sub-folders if you wish to  do that. Either way they will all be in one master folder.

  • Treat JPEG files next to RAW files as separate photos? or How do you not download JPG's

    Environment:
    LR 1.1
    PC: Windows XP SP2, Dual Core 6600, 4GB RAM
    Camera: Konica-Minolta 7D shooting RAW and JPG (CF card has 3 files for each frame, RAW, JPE, THM)
    Although I Imported my RAW files with no problem, I discovered that the Import also copied the CF card's JPGs to the same folder as my RAW files on the hard drive. So I set out to figure out how to import RAW into LR without also downloading JPGs to my hard drive. I have not succeeded at that and have added a, Delete of the JPGs from my HD before synching Metadata step, to my workflow, but I DID find some truly weird behavior.
    The File menu dropdown offers two ways to Import from the card.
    1) Import Photos from device which goes directly to the Import dialog where I have preview ON.
    2) Import photos from disk . . .which goes to a file display of the CF card for file selections before going to the Import dialog. (Required if you want JPG only)
    Also, if I click on the Import button to the left of the tool bar I am given a dialog box to choose:
    1) M\(Camera or Card Reader) or
    2) Choose Files..
    These correspond to the same options that the File menu offers.
    My results:
    If you want to Import only RAW files use the Device option.
    If you want to Import only JPG where you have RAW on your CF card use the Disk option and only select JPGs(with or without the preference switch set).
    If you want to Import both RAW and JPG use the Disk option with the Preference option ON and select both JPG and RAW files.
    But, I assumed (my error) that I could, using the Disk option, mix and match JPG and RAW selections.
    THEN the strange stuff . . .
    If in the disk option with the preference switch set ON, I selected just RAW or both RAW & JPG files on the CF card in the file selection dialog, the Import dialog always showed BOTH RAW and JPG files in the preview. If then, in the Import dialog for any specific file, I selected a RAW or JPG but not both, selecting RAW Imported a JPG file and selecting JPG Imported a RAW file. No kidding.
    I ran this test three times. I dont consider this a big problem because there is a way to get RAW only, JPG only and both when needed, but someone could look at the code before the next release. (Maybe the shell game goes away in Pirate mode.)
    My biggest disappointment is I could not find a way to Import RAW without copying a second file to the same folder on my hard drive which I will need to delete later. Maybe, next release. (Please)
    For the development team, I offer my thanks for your significant advancement of digital photography.
    For those that get to the bottom of this post, remember Rule 5.
    Bob McAnally

    >Speaking of which, WHY would anyone want to import jpgs alongside raws in Lightroom? I can't see any reason, and they just take up disk space. Am I missing something?
    I'm not as gifted at file editing as many of you are, and often the jpgs I get from Canon or Nikon are much nicer than the raws. Sometimes I am sufficiently pleased with the jpgs that I just toss the raws. Sometimes I want to play, and the jpgs give me a target to shoot for and try to surpass.
    Only when I really blew the exposure, not too common anymore, do I really need the raws to save what should have been a really great shot.
    I understand the arguement for raw files. I just haven't found that they are automatically better than the jpegs without a lot of tinkering.

  • Accident:  Dragged thousands of jpeg files onto desktop and lexar drive and unable to trash

    In a failed attempt to copy thousands of photos from iphoto onto a lexar jumpdrive, I fumbled and somehow managed to drop them onto my desktop and the lexar drive.  Was in a rush to leave and fumbled a bit more not knowing exactly what I was doing and just turned the mac off and back on.  All items that were initially on my desktop disappeared.  Figured out I had those thousands of photos on my desktop (invisable though to see) and also they were "zero" in size. I could view these if I looked at my desktop via a folder on the harddrive.  Being able to do so I gathered up my other items and put them in folders off of the desktop and then proceeded to pull all the "zero" files into the trash.  Got the message that another application was using these and do I still want to trash them - I did so I proceeded with each individual file asking the same question.  After I shutdown.  The next day started up and the files had not deleted.  I decided to put the lexar drive in (had not looked at it yet since pulled it out in the beginning).  That also had files that I am unable to delete.
    help!

    I think that I got the problem solved only It was extremely time consuming.  I had 60,000 zero files on the desktop and I selected a bunch at a time, held the control button, selected "move to the trash", answered "continue" from a pop up (told me that they were being used by an application and that it may make the app not function correctly - I ignored that) and continued until all 60,000 were gone.  I am assuming the application it was refering to was the finder?  I then went to the disk utility and repaired the Disk Permissions (not sure if that helped or not).  Anyways, the finder is working fine - so far!
    I figured that this same process would have to be done with the jump drive and had not done that let.  You saved me!  I just reformatted that with the Disk Utility and I am back to business!  I will certainly keep in mind the removing of the desktop preference file if this happens again and my curiosity is up wondering if that would have saved a whole lot of mindless hours clicking "continue" 60,000 times.
    Thank you!!

  • Where are my JPEG files?  I can see them in iPhotos, but I want them in an ordinary folder.

    I would like to be able to use my Photo Files from an ordinary directory/folder, as one can on a Windows PC.  On my Mac Air, curses upon it, I can only find them i  iPhotos.  I want to edit them using another piece of software, but that software's File menu needs to refer to the traditional PC structure.
    Rant: I really dislike apples unless they're Braeburns.

    If the photos are already in iPhoto you can export a copy of them using the iPhoto File menu Export item.
    For future photos, there is no requirement that you use iPhoto. You can bring them to your Mac using Image Capture and store them however you like. Go to iPhoto and open Preferences on the iPhoto menu and on the General tab of Preferences set "Connecting camera opens" to Image Capture.

  • How use PHP to read image files from a folder and display them in Flex 3 tilelist.

    Hello. I need help on displaying images from a folder dynamically using PHP and display it on FLEX 3 TileList. Im currently able to read the image files from the folder but i don't know how to display them in the TileList. This is my current code
    PHP :
    PHP Code:
    <?php
    //Open images directory
    $imglist = '';
    $dir = dir("C:\Documents and Settings\april09mpsip\My Documents\Flex Builder 3\PHPTEST\src\Assets\images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "filename: " . $file . "\n";
    $dir->close();
    ?>
    FLEX 3 :
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="pic.send();">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.rpc.events.ResultEvent;
    public var image:Object;
    private function resultHandler(event:ResultEvent):void
    image = (event.result);
    ta1.text = String(event.result);
    private function faultHandler(event:FaultEvent):void
    ta1.text = "Fault Response from HTTPService call:\n ";
    ]]>
    </mx:Script>
    <mx:TileList x="31" y="22" initialize="init();" dataProvider = "{image}" width="630" height="149"/>
    <mx:String id="phpPicture">http://localhost/php/Picture.php</mx:String>
    <mx:HTTPService id="pic" url="{phpPicture}" method="POST"
    result="{resultHandler(event)}" fault="{faultHandler(event)}"/>
    <mx:TextArea x="136" y="325" width="182" height="221" id="ta1" editable="false"/>
    <mx:Label x="136" y="297" text="List of files in the folder" width="182" height="20" fontWeight="bold" fontSize="13"/>
    </mx:Application>
    Thanks. Need help as soon as possbile. URGENT.

    i have made some changes, in the php part too, and following is the resulting code( i tried it, and found that it works.):
    PHP Code:
    <?php
    echo '<?xml version="1.0" encoding="utf-8"?>';
    ?>
    <root>
    <images>
    <?php
    //Open images directory
    $dir = dir("images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "<image>" . $file . "</image>"; // i expect you to use the relative path in $dir, not C:\..........
    //$dir->close();
    ?>
    </images>
    </root>
    Flex Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="callPHP();">
    <mx:Script>
    <![CDATA[
    import mx.rpc.http.HTTPService;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var arr:ArrayCollection = new ArrayCollection();
    private function callPHP():void
    var hs:HTTPService = new HTTPService();
    hs.url = 'Picture.php';
    hs.addEventListener( ResultEvent.RESULT, resultHandler );
    hs.addEventListener( FaultEvent.FAULT, faultHandler )
    hs.send();
    private function resultHandler( event:ResultEvent ):void
    arr = event.result.root.images.image as ArrayCollection;
    private function faultHandler( event:FaultEvent ):void
    Alert.show( "Fault Response from HTTPService call:\n " );
    ]]>
    </mx:Script>
    <mx:TileList id="tilelist"
    dataProvider="{arr}">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="images/{data}" />
    </mx:Component>
    </mx:itemRenderer>
    </mx:TileList>
    </mx:Application>

Maybe you are looking for

  • Changing existing classical scenarios in ID to ICo post PI upgrade

    Dear Members, Installed a test PI 7.11 system and restored primary PI DEV system backup on to the test PI system and then the test PI 7.11 system was upgraded to PO 7.4 dual stack system. Done with the post up-gradation activities and the test PO 7.4

  • Iphone 4s crashing after adding starbucks freebees

    I am having a problem with my iphone 4s. After I bought it in December I added a couple of the free things from starbucks to my itunes and did a sync. After this my hone kept crashing. No aplication would work, I couldn't turn it off and most anoying

  • Migrating projects from JDeveloper 10.1.2 to JDeveloper 11g

    Hi, We are currently still making use of JDeveloper 10.1.2.2 to develop/maintain JSP/Struts/ADF 10.1.2 applications. Will it be possible to migrate these projects directly from JDeveloper 10.1.2 to 11g with the final production version when it is rel

  • JSP + JAVA Beans +Torque

    Hey, I am using Torque to connect MySQL DB to JSP page, so I am using JAVA Beans, which is created by torque, I wish to use pagination to retrieve the entries from database, plz tell me how can I implement it here.

  • Accessing SAP ECC6 from EP

    Dear All, Our Netweaver EP developer is requesting for SAP_ALL to access sap ecc6 system. Are there any standard role from sap to support RFC call from Netweaver AS to SAP ECC6. in reality the requirement is only to make web based application for edi