Need advice on how to import / store existing image files into LR etc.

Hi,
I am just beginning to use LR 2.3 and I want to start correctly....
I have been pondering how to begin and I was hoping some of you might point me in the right direction.
1. I have all of my RAW files on my Mac's desktop and they are organized at the top level by each of the 2 cameras they were taken with and then the sub folders of each organized chronologically with each subfolder titled by the location or subject of the images matter within each folder.
I want to import these into LightRoom 2.3 in a manner which will preserve this taxonomy. I also want to convert these RAW images into DNG files on import. How do I set up LR2 to do this?
2. I want the Lightroom files and the image files to live on my external Caldigit eSATA VR drive. This drive is actually 2 disks set to mirror as hardware RAID 1 so it is essence its own backup if one disk dies. How do I point LR to create and store the DNG files on this external drive and then set LR2 to back up so that the LR datafiles also live there? Would you say this is a good way to set this up or should the LR datafiles ( previews etc. live with LR on the OS drive??
Is RAID 1 as safe as backing up to 2 different HD's?
Is it best to convert to DNG ( I like the fact that any LR image data is stored with the DNG and is not a sidecar file which could get seperated) or convert to DNG with orginal RAW file incorporated? How massive do these get?
Is it best to use LR2's backup utility and exclude the LR data from the Time Machine backup?
Sory for the long question...

>1. I have all of my RAW files on my Mac's desktop and they are organized at the top level by each of the 2 cameras they were taken with and then the sub folders of each organized chronologically with each subfolder titled by the location or subject of the images matter within each folder.
>I want to import these into Lightroom 2.3 in a manner which will preserve this taxonomy.
>I also want to convert these RAW images into DNG files on import. How do I set up LR2 to do this?
On the Import Photos Screen, pick "Copy photos as Digital Negative(DNG) and add to catalog" from File Handling drop-down at top of screen.
If your photos are organised as:
Photos - Camera 1 ...
- Camera 2 ...
then Lightroom will reflect that folder view in its Folders panel. Also, when converting to DNG you get to choose destination folder (answers part of your question 2) and multiple organisation choices including "Organize by Original Folder"
(Take a look at Chapter 4 of the help file for more information: http://help.adobe.com/en_US/Lightroom/2.0/lightroom_2_help.pdf)
2. I want the Lightoom files and the image files....
Create your catalog on that drive. Move your images to that drive before importing them, and when converting to DNG on import, choose a folder on that drive as destination on import screen.
>Is RAID 1 as safe as backing up to 2 different HD's?
No. RAID 1 is a simple mirror of 1 drive on another; so if you delete a file on drive, it is also deleted from both drives. Likewise, if a file is corrupted on one drive it will also be corrupted on the mirror. RAID 1 is good as a safeguard against single-drive failure; your data will be available from the remaining drive, but it is not a safeguard against user error or file corruption.

Similar Messages

  • How to Import AVCHD 1080/60p Files into Final Cut Pro 7?

    How do I import AVCHD 1080 / 60p Files into Final Cut Pro 7? And if there is no direct way [I certainly haven't found one, but I'm no expert], what additional software would be used? I want to import the files from a Panasonic HDC-HS700 onto an Intel Mac laptop [Mac OSX 10.5.8]? Obviously I don't want to compress & compromise my footage.
    I’m sure a simple, straightforward series of steps would help many people with this issue.
    Thanks!

    Thanks for the response!
    I'm guessing you've found ClipWrap2 to be better than competing products [such as AVCHD Converter for Mac, Toast Titanium, or Voltaic].
    On to the next steps. Using Clipwrap2, would I leave the checkbox "Convert Audio to LPCM" selected or deselected [and what the heck is LPCM?]. In the pulldown menu would I choose "Rewrap (Don't alter video samples)" or do I save a step by choosing "Apple ProRes 422"?
    And finally, am I gaining anything by shooting 1080/60p on this Panasonic HD Camera other than a headache? [Some have suggested this is not a True 60p.]

  • Importing from XML to Excel - need to know how to append to existing Excel file

    Hello,
    I have several XML files that I will need to import into one Excel spreadsheet. I have been able to figure out how to import an XML file to an Excel file but when I import a second XML file, the contents of the second XML overwrite the Excel spreadsheet.
    I am looking for an option to append. Thanks in advance
    private void XmlToExcel(string xmlFilePath, string excelFilePath)
    object misValue = System.Reflection.Missing.Value;
    DataSet Trans_ds = new System.Data.DataSet();
    Trans_ds.ReadXml(xmlFilePath);
    Excel.Application excel = new Excel.Application();
    excel.Application.Workbooks.Add(true);
    System.Data.DataTable table = Trans_ds.Tables[0];
    Worksheet worksheet = (Worksheet)excel.ActiveSheet;
    Range excelRange = (Excel.Range)worksheet.get_Range("A" + worksheet.Rows.Count, Type.Missing);
    int lastRow = excelRange.get_End(XlDirection.xlUp).Row;
    int ColumnIndex = 0;
    int rowIndex = lastRow++;
    foreach (System.Data.DataColumn col in table.Columns)
    ColumnIndex++;
    excel.Cells[lastRow, ColumnIndex] = col.ColumnName;
    foreach (DataRow row in table.Rows)
    rowIndex++;
    ColumnIndex = 0;
    foreach (DataColumn col in table.Columns)
    ColumnIndex++;
    excel.Cells[rowIndex + 1, ColumnIndex] = row[col.ColumnName];
    worksheet.StandardWidth = 20.0;
    worksheet.SaveAs(excelFilePath, misValue, misValue, misValue, misValue, misValue, misValue, misValue, misValue, misValue);
    excel.Quit();
    releaseObject(worksheet);
    releaseObject(excel);

    See if this helps.  I opened the old excel file and added the new rows into the existing workbook.
    private void XmlToExcel(string xmlFilePath, string excelFilePath, Boolean append)
    object misValue = System.Reflection.Missing.Value;
    DataSet Trans_ds = new System.Data.DataSet();
    Trans_ds.ReadXml(xmlFilePath);
    Excel.Application excel = new Excel.Application();
    Excel.Workbook Bk = excel.Workbooks.Add(true);
    System.Data.DataTable table = Trans_ds.Tables[0];
    Excel.Worksheet worksheet = (Excel.Worksheet)excel.Worksheets[1];
    Excel.Range excelRange = (Excel.Range)worksheet.get_Range("A" + worksheet.Rows.Count, Type.Missing);
    int lastRow = excelRange.get_End(Excel.XlDirection.xlUp).Row;
    int ColumnIndex = 0;
    int rowIndex = lastRow++;
    foreach (System.Data.DataColumn col in table.Columns)
    ColumnIndex++;
    excel.Cells[lastRow, ColumnIndex] = col.ColumnName;
    foreach (DataRow row in table.Rows)
    rowIndex++;
    ColumnIndex = 0;
    foreach (DataColumn col in table.Columns)
    ColumnIndex++;
    excel.Cells[rowIndex + 1, ColumnIndex] = row[col.ColumnName];
    worksheet.StandardWidth = 20.0;
    if (append == false)
    worksheet.SaveAs(excelFilePath, misValue, misValue, misValue, misValue, misValue, misValue, misValue, misValue, misValue);
    else
    //open old workbook
    Excel.Workbook oldworkbook = (Excel.Workbook)excel.Workbooks._Open(
    excelFilePath,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, Type.Missing);
    //get first sheet in workbook
    Excel.Worksheet oldxlSht = (Excel.Worksheet)oldworkbook.Worksheets[1];
    //get column A of old worksheet to find last row in sheet
    Excel.Range xlRange = (Excel.Range)oldxlSht.get_Range(
    "A" + oldxlSht.Rows.Count, Type.Missing);
    int LastRow = xlRange.get_End(Microsoft.Office.Interop.Excel.XlDirection.xlUp).Row;
    int newrow = LastRow + 1;
    //get last row of new worksheet
    xlRange = (Excel.Range)worksheet.get_Range(
    "A" + oldxlSht.Rows.Count, Type.Missing);
    LastRow = xlRange.get_End(Microsoft.Office.Interop.Excel.XlDirection.xlUp).Row;
    // copy rows of new worksheet to old worksheet
    xlRange = (Excel.Range)worksheet.Rows["1:" + LastRow, Type.Missing];
    xlRange.Copy(oldxlSht.Rows[newrow, Type.Missing]);
    oldworkbook.Save();
    excel.Quit();
    releaseObject(oldxlSht);
    releaseObject(worksheet);
    releaseObject(excel);
    jdweng

  • How to import and read .lmx files into 2710 Nav.?

    All,
    is there a way to import a route (lmx file) and use it with the 2710?
    I can't find the way to open such a file...
    Thanks a lot for any help, Benoit.

    There is a way (not very comfortable but working) how to import POIs in Nokia 2710.
    Create a set of LMX files, __each containing just one POI__.
    Store those files somewhere on the SD card.
    When you need to reach a POI, select the particular file (Menu / Gallery / All content / Memory card / (the particular directory) / (the particular file)) and select Open.
    The POI will open in the Ovi Maps. Now you can navigate to it (Options / Navigate to) or save it (by Options / Use location / Save location). When saving, you will need to insert the name (the name is NOT copied from the .LMX file).
    Make sure that you have a map covering the area of POIs (if you do NOT have it, upon opening the POI file, you will just get yellow background).
    Examples of LMX files are attached. Examples are located in the Czech republic so make sure that you have the map of the Czech republic.
    PS: Maybe someone would be interested to write a J2ME application which
    1) would parse .GPX file with a lot of POIs
    2) show the POIs to the user (including all the details of POI)
    3) when user selects a POI, generate an LMX file and invoke system to show it (using platformRequest J2ME API).
    4) alternatively, user could insert the GPS coordinates directly.
    Attachments:
    lm.zip ‏1 KB

  • How to Import Garageband projects and files into Cubase for Windows?

    Hi
    I've recently started using Garageband to record my ideas and compositions. I had 2 main questions:
    1. How do I transfer the audio files created in Garageband in a format which will allow me to edit them in Music Software for a Windows based Operating system? Tranferring them to iTunes and then converting them to MP3 doesn't help because then my friends can't edit my guitar parts and other backing tracks.
    Mainly I need to know how to save and import Garageband projects and individual tracks into Cubase/ Cakewalk for Windows so that my band guys can edit the tracks and send me their ideas.
    I'm the only one out of my friends who has an Apple Macbook and most of my band guys still use Windows based Operating systems.
    2. I record my guitars and other instruments using the Digitech GNX4 guitar effects processor as the sound source through USB. While I can record clean guitar without any problem, the moment I switch on the distortions on the GNX 4, there is a loud and constant hum from the speakers. I am therefore not being able to record distorted guitar sounds.
    Please help on this.
    Thanks and hope to hear from you all.
    Cheers
    Prash

    Tranferring them to iTunes and then converting them to MP3
    same as the protools procedure:
    http://www.bulletsandbones.com/GB/GBFAQ.html#openinprotools
    there is a loud and constant hum from the speakers.
    Could be a ground loop problem. Test it using the MacBook on battery power only.

  • How can i store a video file into a ORacle Database

    I want to create a table which will store video file
    How should be the table created and how can i upload the video file to the database from my PC Say the video file is in C:\Video
    Please help me

    Take a look at the Oracle interMedia Sample Code on OTN
    http://www.oracle.com/technology/sample_code/products/intermedia/index.html

  • HT4622 How to import .band and .mid files into GarageBand for iOS

    Using GarageBand for MacOS X, I have no difficulty importing and playing .mid (MIDI) files.  Indeed, I can even rename .kar (Karaoke) files to .mid, import them into GarageBand for MacOS X and see the lyrics along with the score.  Using File Sharing for iOS apps in iTunes.app, I have tried to import .mid and .band files (made from .mid files with GarageBand for MacOS X) using this mechanism.  I get no errors but it doesn't seem to work.  That is, neither the .band file nor the .mid file are accessible from within GarageBand for iOS as far as I can tell.  What should I be doing instead?

    As I understand it GarageBand for iOS .band projects can be imported to GarageBand for OS X, but the reverse isn't true. GarageBand for iOS does not import midi files.
    The File Sharing section of iTunes doesn't validate the files you put into it, but if the app doesn't like the structure of the file it will just ignore it.
    tt2

  • How do I convert an image file into an array?

    I am using LabVIEW v.6.0.2
    I have no NI IMAQ device or IMAQ card, also no Vision
    The image file I have can be saved as a file containing numbers relating to the picels. I want to put these numbers into an array and plot a cross section intensity chart ( I am investigating young's double slits experiment and want to see the interference fringes in graphical form).

    I'm not sure what you're asking.
    In the GRAPHICS palette, there are READ JPEG file, READ BMP file, and READ PNG file VIs. Choose one and together with DRAW FLATTENED PIXMAP and a PICTURE indicator, you can display a picture with two functions and two wires.
    If you have spreadsheet-type data and import it with READ FROM SPREADSHEET FILE (in the File I/O palette), you can plot that directly to an intensity indicator.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • How can I import an existing csv. file into Outlook on a Mac with OS10.7

    Tried to import a csv. file on my Mac (OS 10.7.2) into Microsoft Outlook 2011 (for Mac) on the same computer, ended up with a useless Excel page - it opened the csv file in Excel with only a few contacts and uselessly formatted, at that!. Also, tried to save the csv file as a text file, then importing it into Word 2011 and Excel, with the same results. Anyone able to help? Would like to have the contained address/contact info look concise and neat, without duplicates or garbled/missing information.
    [email protected]

    DPS can use H.264 files, but I have no idea about the details since I've never done any of it myself. Ask in the ID/ DPS forums.
    Mylenium

  • How to import 12 different PPro files into one Encore file to make DVD

    I'm trying to create a DVD with 12 different lessons on it.  I have created 12 Premiere Pro CS4 files (each is a slideshow lessons with narration) and I want to bring them all into one Encore file.  I can send one file to Encore via Dynamic Link - but when I open another PPro file and try to send it to the same Encore folder - it erases the file I put in there previously.  Maybe I'm going about this all wrong - I really don't know.  Please Help.

    Hi Stan,
    Thanks for the reply.
    Since I wanted to get the DVD finished asap - I jumped right into PPro CS4 without going through a learning process first.
    When I said "file" I meant one of the 12 or 13 different PPro projects that I saved to my Desktop...each lesson is different - so I made and saved each lesson separately and placed each of them in a different folder.  Each lesson only has one "sequence" (and I'm not sure what "sequence" means yet).
    These are basically PowerPoint lessons with narration - each lesson containing anywhere from 25-75 pictures or text slides.
    When I opened up one of the lessons in PPro and sent it via DL to Encore - that was fine.  It created an Encore file.  When I opened up the next PPro file and tried to DL to that same Encore file - it appeared to delete or do away with the first file I had sent there.  I could DL each of the 12 or 13 files - but only to its own Encore file.  I couldn't figure out how to get them all into the same Encore file.  But thanks to all the help on this forum - there are now 13 little videos that I can import into the same Encore file.  And that's amazing.
    Thanks for the encouraging words that this project might all fit on the same DVD (I was worred because the files add up to 107 minutes - and I the DVD holds 120 minutes (I think).  I was assuming that after I created a menu and added a picture for the background in the title page, etc., that it would all add up to too much information for one DVD).
    I'll let you know how the DVD turns out.
    Thank you very much.
    ph

  • How to import an Quarkxpress 5 file into Indesign CS3

    Hello,
    I am in trouble when  trying to open with Indesign CS3 for windows a file created with Quarkxpress 5 for Mac. Do you have any hint? (file attached)
    thanks for support

    The Q2ID plugin is really nice as Bob suggested. If you go through there website they will convert your one document and post it for you to download, email you with the results and a discount code. Well worth the money and a very nice company to work with. I can't say enough nice things about their products.
    If you have a newer version of Quark licensed I prefer use their Markztools plugin for Quark to backsave to 4. Seems to be a better conversion with InDesign's Quark import, though that could just be my impression.

  • How to import data from CSV file into a table by using oracle forms

    Hi,
    I have a CSV file and i want to insert in oracle database in a table by using a button in oracle forms.
    the user can select CSV file by using open dialog .
    can any one help me to find method to make import and select file from the client machine ?
    thx.

    1. create table blob
    CREATE TABLE IB_LOVE
      DOC          BLOB,
      CONTRACT_NO  VARCHAR2(20 BYTE)                NOT NULL
    )2. use the code below to insert:
           INSERT INTO ordmgmt.ib_love
                       (contract_no, doc
                VALUES (:control.contract_no_input, NULL
           lb$result :=
             webutil_file_transfer.client_to_db (:b2.file_name, v_file_blob_name, v_col_blob_name,
                                                 'CONTRACT_NO = ' || :control.contract_no_input);
           :SYSTEM.message_level := 25;
           COMMIT;
           :SYSTEM.message_level := 0;3. use the code below to download
         if :control.CONTRACT_NO_INPUT is not null then
              vboolean :=   webutil_file_transfer.DB_To_Client_With_Progress(
                               vfilename,  --filename                       
                              'IB_LOVE', ---table of Blob item                       
                              'DOC',  --Blob column name                       
                              'CONTRACT_NO = ' || :CONTROL.CONTRACT_NO_INPUT, ---where clause to retrieve the record                       
                              'Downloading from Database', --Progress Bar title                       
                              'Wait to Complete'); --Progress bar subtitle  client_host('cmd /c start '||vfilename);
              client_host('cmd /c start '||vfilename);                 
         else
              errmsg('Please choose contract no');
         end if;4. use the code below to open file dialog
    x:= WEBUTIL_FILE.FILE_OPEN_DIALOG ( 'c:\', '*.gif', '|*.gif|*.gif|', 'My Open Window' ) ;
    :b2.FILE_NAME:=X;

  • How can I Export the Image file into Oracle Table

    <tt>
    Hi Folks,
    I have one requirement with me, but i can't able to find the solution for that, so kindly any one give a suggestion for my requirement.
    Let me explain my requirement in detail.. I have one table called SIGN this table contain customer signature image as well as the image of the customer. The SIGN have the following columns
    </tt>
       CREATE TABLE SIGN
      ID                    VARCHAR2(50 BYTE)            NOT NULL,   "This column containing the Customer ID"
      IMAGE_C_FLAG          CHAR(1 BYTE)                 NOT NULL,   "This column containing the whether ID belong to Signature or Photo"
      IMAGE                 BLOB,                        NOT NULL,  "This Column Containing the Image "
      ENTERED_C_BY          VARCHAR2(10 BYTE)
    The SIGN having the following values
    ID                                                 C I IMAGE
    23900033                                           Y S  (BLOB)
    23900034                                           Y S  (BLOB)
    23900035                                           Y S  (BLOB)
    23900036                                           Y S  (BLOB)
    23900042                                           Y S  (BLOB)<tt>
    I want to export those Image from Table into my machine local folder with the extension of .JPEG(C:\IMAGE)
    How can i do that in oracle... please kindly any one give the solution for this..
    This is my Oracle server version
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
    PL/SQL Release 10.1.0.2.0 - Production
    CORE 10.1.0.2.0 Production
    TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
    Thanks in Advance
    Arun
    </tt>

    Hi Arun,
    Please view the below links. Hope these helps you as there are also of similar discussion.
    Insert Picture (image) using oracle forms
    Insert Picture (image) using oracle forms
    insert image to atable in forms builder
    Re: insert image to atable in forms builder
    Thanks,
    Balaji K.

  • I am looking for assistence how to import an existing website in Dreamweaver CS4

    I need help to import an existing website in Dreamweaver CS4

    Only have one Dreamweaver CS4 installed, trying to get my DW CS4 disk I
    bought installed on computer (done)  I only need to figure out  how to link
    my website to the DW CS4 on my second computer.
    L. Francesca Ferrari, L.Ac., DTCM, DMQ (China)
    Ferrari Center of Chinese Medicine
    222 Forest Avenue
    Pacific Grove, CA 93950
    831.818.3993
    www.francescaferrari.com
    L. Francesca Ferrari, L.Ac., DMQ (China)
    Department Chair Medical Qigong Science
    Five Branches University
    This message, together with any attachments, is intended only for the use of
    the individual or entity to which it is addressed and may contain
    information that is confidential and prohibited from disclosure. If you are
    not the intended recipient, you are hereby notified that any dissemination,
    or copying of this message, or any attachment, is strictly prohibited. If
    you have received this message in error, please notify the original sender
    immediately by telephone or by return e-mail and delete this message, along
    with any attachments, from your computer.
    From: "Nancy O." <[email protected]>
    Reply-To: <[email protected]>
    Date: Sat, 04 Sep 2010 18:34:03 -0600
    To: Francesca Ferrari <[email protected]>
    Subject: i am looking for assistence how to import an existing
    website in Dreamweaver CS4
    >> I do not know where the site files are. They are on my initial Mac laptop
    >> computer, and I use Hostway as my server.
    Do you mean you lost your local copy of your site files from on an old
    computer?
    Log-in to your Remote Server and GET the site files using DW or your favorite
    FTP application (Cute, Filezilla, WS_ftp, etc....)
    >> But I was distinctly told my the call yesterday with Adobe that I must have
    >> CS5 to get my website, www.francescaferrari.com with Dreamweaver on my
    >> second computer.
    Which version of DW did you have before?
    How many installations of DW did you have? You can have up to 2 at a time.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    >

  • How do I import Map Info Tab files into Spatial for a map of europe?

    How do I import Map Info Tab files into Spatial for a map of europe via FME and have oracle spatial draw the map without problems?
    So far I've got to the stage where I can import the data, spatially index it (in oracle 9i) and get my SVG (scaleable vector graphics) application to view the map.
    The problem is that countries that have more than one polygon (more than one row in the database) do not draw properly.
    When I view the Map Info tab file in the FME viewer I can see that the data is fine, but I can also see that some of the polygons used to draw a country are donugts and some aren't.
    This seems to cause a problem when I import the data into oracle spatial as I don't know if a row in the table needs to be inserted as an independent SDO_GEOMETRY or if it should form part of a larger SDO_GEOMETRY (as in 2 or more rows make up the polygon shape for a country).
    I have a feeling that I'm not using FME correctly, because at the moment I have to import the tab file into Oracle then re-insert the data into a spatially formatted table (one with a spatial index) - I get the impression that FME should do that for me but as I'm new to this I don't really know.
    Any Help welcome :|
    Tim

    Tim,
    MapInfo has a free utility called EasyLoader that allows you to upload a table directly to Oracle. EasyLoader creates the geometries and spatial index. You can download it free from http://www.mapinfo.com/products/download.cfm?ProductID=1044
    Andy Greis
    CompuTech Inc.

Maybe you are looking for

  • How can I remove an "automatic" reply-to function on Apple Mail?

    Hi, I run three different e-mail accounts off of Apple Mail. Two are for business, and one is personal. I am not sure when/how this occurred, but for any e-mail I send the recipient gets a "reply-to" my personal account. I have tried various methods

  • SCCM 2007 to 2012 R2 Migration Data Gathering Error: RPC

    Hi Guys, I am doing Migration from SCCM 2007 to 2012 R2. Facing a RPC connection Error. Following is the details from Migmcctrl.log [MigMCtrl]:    Migration Manager has received a new job request SMS_MIGRATION_MANAGER 19-03-2014 02:21:57 4648 (0x1228

  • Can someone please help me decipher my kernel panic logs??

    Recently I keep getting kernel panics while I am using Safari (Not sure if it's the only reason). The same thing happened everytimg when I played StarCraft(Download from Blizzard Website) on my Mac. I am not sure whether it's a software problem or a

  • Premiere and Photoshop Elements registration acceptance?

    Hello, the above mentioned products are accepted after the entry of their serial numbers and the response is, that the server will take about 30 minutes to update the account. But the products are never listed, even after hours. Reentry of the serial

  • About collections

    hello everybody, My question is "What is a 'collection' in java"? Please explain with an example.