Latest DNG converter not working in command-line mode

Today I downloaded Adobe's latest DNG converter. It is failing with both .NEF and .CR2 files when run in command-line mode. It does appear to work in GUI mode. The switches+arguments I've used for my tests are:
-u -e -p1 filename.CR2
(or filename.NEF)
With an older (CS2) version of the converter, the above arguments produce a .DNG output file as expected (with .CR2 files; I didn't try it with D3 .NEF files; surely that older version doesn't support the D3's format).
With the very latest version, running the program with the above command produces no output. There's no error message.
The 'readme' file that comes with the converter doesn't include any information about command-line usage, but I did find a PDF file covering this (adobe.com/products/dng/pdfs/dng_commandline.pdf). The switches+arguments shown in the PDF file appear to be exactly the ones I used in the past.
I'm sure I'll need to use the most recent version to convert D3 RAW files. Is there something wrong with how I'm specifying its command-line switches/arguments?

It struck me silly that I've been running tests with v.3.3 when 5.2 is the latest, so I downloaded it. The setup "wizard"...hmm, why is it a "wizard"? It provides no choice of installation path. I didn't realize this because immediately after I'd launched it, I knocked something onto the floor, reached down to pick it up ... and looked back up just in time to see the "wizard" complete the installation...but where, I didn't know. It didn't display any information about where it had installed the app. Adventures In Discoverability. :) I hunted around on the hard drive until I found it (C:\Program Files\Adobe -- well, at least you can launch it if you think to look for it in the 'Start' menu). So ... that needs a bit of work. Anyway, I copied the app into a directory of my choice -- one that's in my system's %PATH%, replacing spaces in the name with underscores. It works fine in that directory -- no problem with the name-change as far as I can tell. Now back to the fun stuff...
This version doesn't seem to require a fully qualified path to the input file or to the output directory when "-d" is used. That's an improvement. IOW, this worked:
converter -p1 -d DNG filename
where "converter" is the program's name, "DNG" is the name of a subdirectory of the directory where I'm running the test, and "filename" is the name of a RAW file in that directory.
The program still doesn't know how to create a directory (or ask about creating one if it doesn't exist). Fails silently if "-d" is used and the specified directory doesn't exist. But at least this version returns an exit code of 1 due to the failure -- better than returning 0.
Still doesn't understand wildcards. Hope done sprang eternal there for a moment, but oh well. Back to "for" loops...
Still fails silently, returning exit code 0 (oops), if a nonsensical command-line is used (e.g., using "-c" as the only argument).
Hey, how about a truly silly command-line error -- a command line including both "-c" and "-u". What happens? It "consumes" the first of the two mutually exclusive switches, ignoring the second -- you get a compressed DNG file. Swap the order of the switches, and you get an uncompressed file. (I'd vote for a syntax-error message in that case, m'self.)
Interestingly strange little program...If I run it from the command line, it drops back to the command line immediately after I press ENTER. That makes it appear to have failed. But it hasn't -- it's running in the background, and a few seconds later the DNG file is created. But, if I run it from within a batch file, it does NOT return control to me until it has completed writing the output file. Wonder what's up with that.
Fun stuff. :)

Similar Messages

  • DNG Converter not working on a qualified camera raw photo

    DNG Converter not working on a qualified camera raw photo  Always comes back with this Message  "  check if camera is recognized.   "

    Supported Cameras Camera Raw plug-in | Supported cameras

  • Dng Converter not working in Bridge

    Hi
    I have CS3 and have already downloaded the latest version of the DNG converter.  When I use the Converter as a separate application, it works fine to convert my RAW files to DNG files.  Recently I discovered the process in Bridge called "Get Photos from Camera" where I can process many steps with one click.  Unfortunately, the part where it is suppose to convert my RAW to DNG files isn't working.  Any ideas why?  Some background info, I recently upgraded from Vista 64bit to Windows 7 64bit.  I uninstalled PS CS3 and then installed it back, and it's working fine except for this one little step.  Do I need to install the DNG converter again, but designate it to put loaded into a different folder so that Bridge recognizes it ?  Would appreciate any support or feedback.  Thanks and Happy Thanksgiving.
    Ruth

    nygal77 wrote:
    The camera I am using is the Canon 5D MkII.  Raw images from this camera can not be read by my version of Camera Raw V.4.6.  The readable version for CR V4.6 is DNG Converter V5.5.  This is all for my PS CS3.
    I discovered this Bridge process in a Scott Kelby Book, for CS3, called "Get Photos for Camera".  He specifically goes thru each step, and the second step is the DNG Conversion process.  It worked for him.  It should work for me.
    Ah, but did he do it for images from a 2009 camera with a 2007 version of PS?

  • Executing Command within Pkg.procedure does not work-but command line does

    [Version 10.2.0.2
    [Scenario] Let's say my Username is Jack. My goal is to grant two roles to a user. From the command line, I have no problem.
    PROMPT-> Grant role1,role2 to TESTUSER
    However, when I create a package and procedure (owned by Jack); I receive an ORA-01919 error saying that role2 does not exist.
    There is no question the role exists and I am able to grant it to the TESTUSER on the command line as Jack.
    Any ideas what is going on?

    I can't post it as the database is on another system. However, I found my the fix. My Jack user had grant any role; therefore, I thought it should work both from command line and package.proc; however I granted role2 to Jack with admin privs and it works now both from the command line and the pkg.proc.
    Thanks for the response.

  • Breakpoints not working with Command Line Project

    I have created a “Command Line Utility” “C++ Tool” and I am unable to breakpoint into the code. I’m in the Debug environment and select “Debug Executable” but no luck. I created the sample tutorial which is a Coco Hello World example and was able to get breakpoints to work there. I downloaded and installed XCode yesterday. Been trying to get breakpoints to work every since with no luck. Thanks in advance.
    Sean
    MBP   Mac OS X (10.4.9)  

    OK, the plot thickens a little. I was being too aggressive on my breakpoint. If I breakpoint at the first cout then I can breakpoint. The problem is if I break after the cin. Breakpoints after cin won’t execute and if I pause all context is lost – like the stack got corrupted.
    <pre>
    #include <iostream>
    #define ENDFILE "CTRL-D or CTRL-Q then CTRL-D in XCODE"
    int main (int argc, char * const argv[])
    char next;
    // insert code here...
    std::cout << "Hello, World!\n";
    const char NWLN = '\n';
    int charCount;
    int lineCount;
    lineCount = 0;
    std::cout << "Enter a line or press " << ENDFILE << ": ";
    std::cin.get(next);
    while (!std::cin.eof())
    charCount = 0;
    while (next != NWLN)
    std::cout.put(next);
    charCount++;
    std::cin.get(next);
    std::cout.put(NWLN);
    lineCount++;
    std::cout << "Number of characters in line " << lineCount
    << " is " << charCount << std::endl;
    std::cout << "Enter a line or press " << ENDFILE << "; ";
    std::cin.get(next);
    std::cout << std::endl << std::endl << "Number of lines processed is "
    << lineCount << std::endl;
    return 0;
    </pre>
    MBP   Mac OS X (10.4.9)  

  • DNG Converter not working

    I have CS4 and just bought a D7000, realised it won't convert the RAW images to DNG.  I have downloaded the latest converter but it is not seeing the images on the SD card or from a folder on the laptop.  Have downloaded several times. 

    http://forums.adobe.com/community/dng
    http://forums.adobe.com/community/cameraraw

  • CANNOT_START-UP: Stars in Command-Line-Mode: "Deallocation of a pointer not

    HELLO EVERYONE, PLEASE CAN YOU HELP ME...
    My computer: Mac OS X (10.3.9) had froze, couldn't force quit..and i forced started it by holding the power button. Restarted it, came on: the grey-screen and apple, spinning-gear...satayed like that long time then it went into Command-Line_Mode.
    Darvin,
    UserName:
    Password:
    I enterded UserName and Password, but could not start in normal ways.
    Now when I start-up the computer, Command-Line opens with only:
    :/root#
    and a curser-point.
    I have been reading all the leads that I found in the discussions, tryed most of the suggestions: fsck (/sbin/fsck -fy), Safe-Mode (didn't start in), couldn't start up from CD.
    COMMAND-LINE (at one time it said like this):
    *God boot device= IOService:/MacRISCZPE?pci@f2000000/AppleMacRiscPCI/*
    *mac-io@17/AppleKeyLargo/ata-4@1f000/KeylargoATA/ATADeviceNum@0/IOATABlockStorag eDrive/IOATABlockStorageDevice/IOBlockStorageDriver/ST340810A.Media/IOAppleParti tionScheme/MacOS@5 BSD root: diskOs5, Major 14, minor 5*
    *Feb 22 14:32:25 mach_init[2]:Started with uid=0 audit-uid=-1*
    *Feb 22 14:32:25 init:ignoring exwss arguments/etc/rc.boot:cannot dublicate*
    *fd-1048577 to fd 1: Bad file descriptor*
    **malloc[3]: Dealocation of a pointer not malloced: 0x710; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug*
    *at an other time after using fsck*
    Command-Line-Interface:
    *:root#/sbin/fsck -fy*
    **/dev/rdiskOsF
    *Root file System*
    *Checking HFS Plus volume.*
    *Checking Extents Overflow file.*
    *Checking Catalog file.*
    *Keys out of order*
    *(4, 8874)*
    *Rebuilding Catalog B-tree.*
    *The Valume Macintosh could not be repaired.*
    PLEASE HELP!
    WHAT Should i do?
    If nothing works, could i start-up from OS 9.2.2? (Both Systems OSX and OS_9.2.2 were installed)
    If the B-tree is corrupt, does it being shared by both OSX and OS_9.2.2?
    THANK YOU

    Hi Kappy,
    Thank you for taking an interest.
    I already tryed to start_up from CD, but it either didn't started-up
    or it started still in Command-Line-Mode.
    Put the CD in the tray, startedUP with the C_Key Held.
    It took a little longer and seemed it was going to start from CD but went into CommanLine again.
    but instead of
    :/root#
    it said something else, something like:
    2e_sh.. (Something! i could redo it and write it down here if it will help)
    Other times i tryed to bootUP from CD by holding-down the Option-Key and saw the install-CD icon next to
    OSX-Icon, so i chose the CD and hit the Straight-ARROW-Icon to start up from the CD, but again it fell
    into CommandLine.
    If i try the Target-Disk-Mode with a healty-Mac, could i be able to see my HD. Then i can switch to
    OS_9.2.2 which i spose is healty because i was using OS_10.3 when this problem happened. And the way
    i think, if the B-tree Catalog is not being shared by both Systems, if each have its own one, then the
    OSX's B-tree Catalog have been corrupted, not OS9's, and so if i could change the start-up-system(Disk)
    somehow, i could be able to start the computer with OS_9.2.2 running. Both systems were installed,
    and i was switching back and forth between them. Then i can fix my computer by, at least, starting
    to throw away some of the junk and so making some free-space.
    I had read that HD should not be full more than 85%. I had 2.5GB space left out of 40GB.
    But if there is a risk that things like this could happen because your HD is too full;
    why arn't they (Apple) fix this, buy, at least, showing as if you HD is full before it gets
    too full to leave a safety net for the B-tree Catalog files evidently that need to be written
    in continuous blocks on the HD.
    So thank you again, and keep me posted if you might think something else could fix my computer. I need
    this computer.
    thanks

  • I'm having troubles converting my raw files from Nikon D5200 (NEF) to DNG. I tried using Lightroom 4, but it didn't identify the folder containing the files. So i downloaded the latest DNG converter but that too didn't identify the files kept in the folde

    I'm having troubles converting my raw files from Nikon D5200 (NEF) to DNG. I tried using Lightroom 4, but it didn't identify the folder containing the files. So i downloaded the latest DNG converter but that too didn't identify the files kept in the folder location. So I downloaded DNG converter v7.3 for D5200. It identifies the folder and files; but it is giving me parsing error on trying to convert files. I'm running Windows Vista Home Edition SP1. Kindly advise. Thank you.

    I probably missed this detail in what you’ve posted, but do you see the thumbnails of the three cameras’ raw files in Finder if you don’t convert to DNG?
    What has happened in the past is that the Apple raw interpreter doesn’t read thumbnails of DNGs it doesn’t like, where at least one thing it didn’t used to like was embedded lens corrections for mirrorless cameras.  Are the Olympus and Panasonic mirrorless—meaning there is no optical viewfinder and everything is seen on an LCD screen or perhaps an electronic view finder?  If so the reason these are different is that the camera is doing the lens distortion corrections automatically and this information is stored in the raw files and in the DNGs but Apple doesn’t know how to use these embedded lens corrections or doesn’t know how to read the newer DNG spec that does allow for this information to be embedded in the DNG, at least.
    Apple could just extract the embedded jpg preview and ignore the other parts of the file it doesn’t understand, but it apparently doesn’t do this.
    What I’m not sure about is if the Apple raw interpreter still has this problem or if you’re on an older system without the latest updates for camera raw decoding by Apple.

  • DNG converter not converting RAW files from Canon 70D.

    DNG converter not converting RAW files from Canon 70D (it does not see them). I tried DNG converter version 8.2 and 8.4. No success. I use iMac. What is wrong?

    hopefully, that's a typo on adobe's website because they list the canon 70d as using a .cs2 file extension, http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    i don't see any other camera that uses a .cs2 extension and i don't see other people having problems, so that probably is a typo.
    in any case, cr 8.2 or better is able to convert your camera's raw files.  why you are having a problem i can't say, but double check that you are navigating to the correct folder by adding a file that will show up in your dng converter.

  • DNG Converter Not seeing my Hard Drive(s)

    DNG CONVERTER not seeing my hard drive....none of them.
    Any help will be greatly appreciated....THANX.

    Platform: Macintosh or PC?  Exact versions of the OS and the DNG Converter?  Details about your setup?  How is the drive formatted?
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Install UCM 11g in command line mode

    Hi there,
    I am installing oucm 11g on a linux system (suse 11). I would like to know if it is possible to run the installer in command line mode (without using any X11 window server).
    I have tried with this command
    ./runInstaller –jreLoc $JAVA_HOME
    but after some requirements check failed because it cannot connect to X11 window server.
    Thanks,
    al

    Though following installation procedure may not be supported but it worked for me.
    create Inventory Location
    mkdir /var/SP/weloadm/home/oraInventory
    Create an file oraInst.loc with contents in the
    software directory:
    inventory_loc=/var/SP/weloadm/home/oraInventory
    inst_group=welo
    ./runInstaller -jreLoc $JAVA_HOME -silent -
    invPtrLoc /var/SP/weloadm/home/software/oraInst.loc
    “ORACLE_HOME=/opt/SP/weloadm/Middleware/Oracle_ECM1
    ” “MIDDLEWARE_HOME=/opt/SP/weloadm/Middleware”
    Hope it helps

  • RunInstaller in command line mode

    Hi All
    Can I runInstaller in command line mode without using the GUI?
    I download linux_11gR2_examples.zip and upload it onto my Amazon AMI
    I would like to iinstall the examples but I am not able to set xdisplay so how I can get around this?
    -Thanks for all your input

    Hi;
    Please see below doc
    http://download.oracle.com/docs/cd/E11882_01/install.112/e16763.pdf << Oracle Database Installation Methods
    By the way why you can not xdisplay? What is error?
    Please see:
    Re: 11gR2 Grid Infrastructure cannout launch installer OEL 5.5
    Regard
    Helios

  • Command line mode bootup

    My mac boots to command line mode ( not sure single user mode or verbose mode ). I've tried following ways to fix but it doesn't help. Can anyone help ?
    - fsck -fy
    - mount -uw /
    - verify disk permission
    Wicky

    If this is not the case: http://support.apple.com/kb/TS4376
    Try resetting PRAM/NVRAM: http://support.apple.com/kb/HT1379

  • Crystal Reports in Command Line mode

    Where can i find a complete list of the different parameters i can use crystal reports in command line mode with?

    Command-line mode?
    Sincerely,
    Ted Ueda

  • Command line mode for SandBox

    Hi,
    Does it exist command line mode to set up SandBox?
    Does anybody have this experience?
    if yes, can you, please , share links or docs.
    Thank you kindly.

    With version 9i of EM a new command-line utility has been introduced called "OEMUTIL". From the "Oracle Enterprise Manager 101" book:
    "The oemutil command is a utility that performs various job-related and event-related tasks. It provides a command-line alternative to performing the same functions from the EM Console for registering and deregistering events or jobs, and changing
    database passwords stored in the repository.
    The syntax for the oemutil command is:
    oemapp oemutil <username>/<password>@<oms> <command> <parameters>
    The parameters for the oemutil command are:
    <username> This parameter specifies a valid EM administrator account. It is the same account used to log in to the EM console.
    <password> The password for the EM administrator account.
    <oms> The name of the machine running the OMS.
    <command>< parameters> A command to be performed by oemutil with
    corresponding parameters."
    You can submit existing EM jobs or create new jobs "on the fly".
    Regards
    Lars Bo

Maybe you are looking for

  • Fault Monitor in LMS 4

    Hi all, Ciscoworks LMS 4 is very complicated tool for me and it is very hard to configure any cisco device what I need to monitor. Currently I have 3750-X configured, properly discovered and added to DCR. I would like to receive SMTP messages(mail) f

  • Message received several time

    Hello, when I send a message, my iPhone told me that the message was not delivered. So, I support it so that it retries sending the message but when the message is finally sent, the recipient told me message it receives the same message several times

  • JTableHeader's CellRenderer

    I am implementing a JTable with both column header and row header. The row header is implemented as a JList residing in JScrollPane's rowHeaderView. I used the column header's default renderer to create components for the JList's listCellRenderer, so

  • Force IE to reload applet jar without closing browser?

    Hello, We have an applet that we need to support with both the Sun plugin and the MS JVM in IE. We do releases weekly and need to make sure our users get the most recent version of the jar when they launch the applet after a release. With the plugin,

  • OWA logs user out when they try to set an Out Of Office Message

    After upgrading to Exchange 2013 users can no longer set their Out Of Office (via OWA option 'Set Automatic Replies'). When a user tries to do so via OWA they are immediately logged out and get the error message "The user name or password you entered