Photoshop Album - does LR read data ?

There was talk on the forums during Beta about support for Album Users.
Does V1.0 ship with any way of reading in Album database/metadata ?
With 20,000 images catalogued in album I'm reluctant to move even though Lightroom looks great.
Thanks

It's true that Adobe is not forcing anyone to move from Elements / Album to LR, but circumstances ARE forcing us, or will at some point. The organizer is a PC-only solution, because it's based on the Microsoft Access DB. Even PSE for Mac doesn't have it. And, unfortunately, it is a dead-end, in that there's no way to get your raw images out of it with any metadata, such as tags. With jpg's, you can tell PSE to write the tags to the files, and you can then import those files into LR or some other app with the keywords intact (though you will lose hierarchy, collections, version stacks, etc.). Not perfect, but acceptable. However, with raw images, that is not possible because PSE won't write tags to raw files - neither xmp sidecars, nor dng. Their tags live only in PSE's own database, and there's no good way to get them out.
So, I wanted to switch to mac, and I was out of luck. Furthermore, I just wanted to "rescue" my images from a dead-end solution. Why add thousands more images to PSE, and do all the work of keywording, etc., if I'll never be able to get that data out of PSE? I was even willing to write a program to do it by accessing the Access database directly, but Adobe has refused to publicize the format of that database (the data dictionary) so it's tough to do. (There is one reverse-engineered "solution" out there, but it's specific to iView, and also reportedly has problems.)
LR seemed like the perfect answer. It's FAR superior to PSE for my workflow. It's PC-MAC cross-platform. It follows good current practice in that it stores most important data about each photo in or with the photo itself, so that it can be moved to some other application if ever necessary (remember that photos may live for generations, and NO application lives that long). And it's Adobe, so I assumed that it would play well with other Adobe products. Specifically, I assumed that it would import my stuff from PSE. While for a long time Adobe never specifically said that they would provide a PSE->LR path, they implied that they would, and in the last couple of months before launch they did confirm that they would provide it.
What a disappointment to find that it doesn't work very well. It got all of my collections right (though I lose the order, I can live with that). But it missed the last 1/3 of my keywords, and the number of images in LR is slightly different from the number in PSE. I've got a bunch of images that have no keywords at all, presumably because they were in that last 1/3 of my tags. I guess I'll just go back in and add them by hand, but I've got no confidence that the images that DO have keywords have ALL of their keywords or that they're correct. What a mess!
So, no, Adobe isn't forcing us, but it sure would be nice if they would help us out of a dead-end situation that is created by their non-standard practices in PSE, especially since we're willing to spend our money and buy a new application from them to do it. I appreciate that they've tried to do so by adding this import function, but it's nearly useless if it doesn't work reliably.

Similar Messages

  • Server Socket does not read data input stream

    Hi all,
    I am very newbie to Java Network programming with sockets and multi-threading.
    But I am obliged to develop a chat system written in Applets which can be placed on the website and used by visitors who come to my website.
    In order to understand this, I have tested a basic web chat program I downloaded from the Internet which use sockets and multi-threadings. The program work fine, no bugs at all at both compilation and run time. I noticed that all three streams for Client side (i.e. first one is input stream used receiving data from User; the second one is socket input stream used for receiving data from Server socket, and the third is socket output stream used for writing data to server socket) were established. And the same, two socket streams (input & output) for Server side were also connected when running program giving right port number and IP address of the server.
    The problem is both server and client sockets do not read data using the following stream classes:
    1. DataStreamInput: I use input.readUTF() method
    2. or BufferedReader: I use input.readLine() method
    The example of the codes are below:
    private BufferedReader input = null;
    private PrintWriter output = null;
    private Socket socket = null;
    public void open() throws IOException
    {  input = new BufferedReader(new
    InputStreamReader(socket.getInputStream()));
    System.out.println("Server socket input stream was created, and");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Server socket output stream was created");
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    System.out.println("Server is reading data from Client, wait...");
    String fromClient = input.readLine();
    System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    The problem is at the line: String fromClient = input.readLine(); in the run() method? What is wrong with the codes above?
    Note: I also try to use original codes which use readUTF() method in DataStreamInput class instead using readLine() in BufferedReader. Both methods dont read data from inputstream socket?
    I very appreciate any help/advice from experienced developers.
    Best regards

    Hi,
    Yes. The readLine() method hangs! After the test, the execuation of the program is stopped at the line of readLine() method; it does not pass it?
    There is no problem with writing to Server socket. After the test, the program pass through flush() method. Here is the code for writing to sever socket within ChatClient (client side socket) class:
    private BufferedReader input = null;
    private PrintWriter           output = null;
    public ChatClient(String serverName, int serverPort)
    {  System.out.println("Establishing connection. Please wait ...");
    try
    {  socket = new Socket(serverName, serverPort);
    System.out.println("Connected: " + socket);
    start();
    catch(UnknownHostException uhe)
    {  System.out.println("Host unknown: " + uhe.getMessage()); }
    catch(IOException ioe)
    {  System.out.println("Unexpected exception: " + ioe.getMessage()); }
    public void start() throws IOException
    {  input   = new BufferedReader (new
                             InputStreamReader(System.in));
    System.out.println("Client User input stream was created,");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Client Socket output stream was established, and");
    if (thread == null)
    {  client = new ChatClientThread(this, socket);
    thread = new Thread(this);
    thread.start();
    public void run()
         while (thread != null) {
         String fromUser;
              try{
                   while((fromUser = input.readLine())!= null)
                   System.out.println("Client wasreading a data from User, and");
    output.println(fromUser);
         output.flush();
         System.out.println("Client has written a data to Server");
    catch(IOException ioe)
    {  System.out.println("Sending to server error: " + ioe.getMessage());
    stop();
    etc.
    Here is a piece of codes for reading data from the Client Socket in the ChatServer Class (Server Side socket):
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    {  //server.handle(clientPort, input.readLine());
    System.out.println("Server is reading data from Client, wait...");
    String fromUser = input.readLine();
    //while((fromUser = input.readLine()) != null)
         System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    etc. Please advice why the readLine() method hangs; does not read data from the input stream received from the CLIENT?

  • Equium A60 - DVD drive does not read data discs

    Hello
    I am having a problem with my DVD drive on my Toshiba Equium A60 laptop. The DVD drive (Pioneer DVD-RW DVR-K13A ) will play shop bought films etc without a problem. it will also read a blank DVD when you put it in the drive but once information/Data is on the disc it wont detect the disc.
    I am not really that good with computer so any help would be most grateful. The computer used to play everything it just stopped doing it a few months back.
    Many thanks Phil

    The issue is clear.
    Fact is that not all CDs and DVDs are supported and compatible. There could be always an issue with a reading or writing
    The same happened to me too I had to test different CDs and DVDs from different manufacturers and finally some medias worked
    In your user manual you should find a list of medias which were tested and should run properly check it!
    bye

  • Cross tab does not read data after a certain point

    Post Author: tatiana88
    CA Forum: General
    I am using CR10 and have created a simple table that reports hours by month - Jan thru Dec.  The report displays data for the months of Jan thru April, but the data for May and onwards is not being read (it shows as 0 for these months).  I have updated my registry to ensure that the timeout is disabled (value is 0) and that the MaxNBrowseValues is as large enough to cover the numer of records.  The only anomalie is that there is actually a range of records with 0 values exactly at the point where the reporting gets weird, but towards the end, the records in the database actually do have non-zero values, but they are not being picked up by Crystal for some reason.  I would appreciate any help you can offer.

    Post Author: tatiana88
    CA Forum: General
    I have checked the select statement, and there is nothing odd: the date range is a parameter entered selected by the user, and it includes 5/2007 and 6/2007 - and it seems that this range parameter is being taken by Crystal since the columns May and June both appear.  This is strange in that if the values were truly 0 for May and June, the columns themselves would not appear.  Both May and June have data posted in the database.  All other months (Jan through April) show accurately on the Crystal Report.

  • Importing into bridge from photoshop album

    Hi. I have Photoshop Album 2. As it is long outdated, I want to import all the tags, etc from the photos into Adobe Bridge. I have not found a way to do so.
    From searching Adobe support, it appeared that the next best shot was to migrate the photos with tags into Photoshop.com. However, this also does not work as the instructions say to select to share to photoshop.com.
    http://kb2.adobe.com/cps/870/cpsid_87065.html#main_How do I migrate my photographs in Adobe Photoshop Album to Photoshop.com?
    This does not work because the photoshop album, does not offer the choice of sharing with photoshop.com, even after I tried every variety of adding that option in.
    Can anyone please help me with this? I REALLY do not want to retag 10,000+ photos.
    Thank you.

    I know nothing about photoshop album.  But I would first check to see how the key words are written in that program.  In Photoshop elements, and Lightroom they are written to a database.
    In PS elements one can select an option "write keyword and tags to photo".  This will put the data on the image and can then be read by Bridge.
    See it there is such an option for PS album.

  • Importing from Photoshop Album

    Hi. I have Photoshop Album 2. As it is long outdated, I want to import all the tags, etc from the photos into Adobe Bridge. I have not found a way to do so. Hence I decided the next best thing was to migrate the photos with tags into Photoshop.com.
    However, this also does not work as the instructions say to select to share to photoshop.com.
    http://kb2.adobe.com/cps/870/cpsid_87065.html#main_How do I migrate my photographs in Adobe Photoshop Album to Photoshop.com?
    This does not work because the photoshop album, does not offer the choice of sharing with photoshop.com, even after I tried every variety of adding that option in.
    Can anyone please help me successfully import the photos, with tags into either photoshop.com or adobe bridge from Adobe Photoshop Album 2.0? I REALLY do not want to retag 10,000+ photos.
    p.s. I have Adobe CS4 Bridge, Photoshop, etc. I do not have Elements
    Thank you.

    Thank you so much it worked - the only thing that didn't transfer was the folder pics I'd chosen for the tags so that didn't take long to redo - many thanks - I'd never have found that. It would have been so much more obvious if it showed 'open' or 'select catalogue' rather than just the word 'catalogue' with no other options visible from the dropdown menu.
    Happy Bunny here!

  • Adobe Photoshop Album SE 3.2 crashing

    Hello everybody.
    I'm facing a weird and huge problem: since switching from 3Gs to iPhone 4, when trying to import pictures into PS Album SE 3.2, this software crashes.
    After googling a bit, I read about many people facing the same problem. Some of them upgraded to Adobe Photoshop Elements, but still the problem persists.
    No real solution has been found, therefore I'm asking here for some help. It doesn't matter to me if I would have to switch to another software, the main goal is to be able to import pictures and still to have a similar way of viewing them as in PS Album or PS Elements.
    Any suggestions will be appreciated, thanks in advance.
    F.

    If the iPhone gets connected as a USB device, i.e. if it shows as a new drive in "My Computer", Adobe Photoshop Album Starter Edition must be able to download images from it. If that's not the case, as has been already stated, it would be a good idea to copy the images using windows explorer i.e.
    1)Connect the iPhone
    2)Go to My Computer
    3)Browse through the iPhone(which should be displayed as a separate drive) and locate the images folder.
    4)Copy the images that are to be transferred.
    5)Paste them to the folder on your drive where you want them to be.
    6)Now import these images to Adobe Photoshop Album Starter Edition.

  • IPhone crashes Adobe Photoshop Album SE 3.2 on multiple PC's

    Whenever I attach my iPhone the Adobe Photo Downloader starts, it see's the pictures and then gives a "Fatal Error" and forces Photoshop Album SE 3.2 to close. I've uninstalled and reinstalled, uninstalled and ran regedit to get rid of any lingering registry entries (I manage a network of 300+ pc's) and reinstalled and then did a couple of fresh installs on some new Dells I'm deploying, it still crashes... Anyone else have this issue and find a fix?

    If the iPhone gets connected as a USB device, i.e. if it shows as a new drive in "My Computer", Adobe Photoshop Album Starter Edition must be able to download images from it. If that's not the case, as has been already stated, it would be a good idea to copy the images using windows explorer i.e.
    1)Connect the iPhone
    2)Go to My Computer
    3)Browse through the iPhone(which should be displayed as a separate drive) and locate the images folder.
    4)Copy the images that are to be transferred.
    5)Paste them to the folder on your drive where you want them to be.
    6)Now import these images to Adobe Photoshop Album Starter Edition.

  • EDGE SIMULATOR CAN'T READ DATA FROM SIMULATION.XML

    HI,
    i have installed the SES(10.1.3) and before that Application server 10.1.3 .
    I have followed all the steps given at the following link
    http://www.oracle.com/technology/obe/1013/fusion_middleware/integration/ses/configuringsimulator/configuresimulator.htm#t1
    It works works well till step 16 and edge is restarted successfully , I exit from enterprise manager by logging out and then logging in again for edge
    and then when i click on monitor events then it gives me nothing in the row( no data, no time , no id) just blank row...
    Mean it does not read data from Simulation.xml file
    my file (Simulation.xml) is residing in F:\oracleAS\10.1.3.1\OracleAS_1\j2ee\home\applications\edge\edge\config folder where 'edgerserver.xml' is residing.
    edgeserver.xml contains all driver details i guess.
    Can anyone help me to cope with the problem.
    thanks :-)

    Atlast i have overcome my problem , in order to read data from simulatin.xml file one has to change the "log level" in general settings to monitor and it will work .
    other options for log level are , error , warning, notify and debug etc .
    so change it to log level , then login as enterprise manager, restart edge , log out from emanagaer and again login to edge and click on monitor tab , u r done :-)

  • Sound does not work in Photoshop Album PDF

    I have a 5 yr old pdf made with Photoshop Album 2. The sound does not work and also an attached video does not play (only shows as a still image). This pdf used to work perfectly when I got it but since of course I have change computer, os and acrobat versions many times. I think it worked fine when using Windows XP, don't know which version of Acrobat Reader. Currently running Windoiws7 and Reader 9.3
    I got this sent to me so I only have the pdf, no original files etc.
    Anybody know how to get this working?
    Thanks

    I have a 5 yr old pdf made with Photoshop Album 2. The sound does not work and also an attached video does not play (only shows as a still image). This pdf used to work perfectly when I got it but since of course I have change computer, os and acrobat versions many times. I think it worked fine when using Windows XP, don't know which version of Acrobat Reader. Currently running Windoiws7 and Reader 9.3
    I got this sent to me so I only have the pdf, no original files etc.
    Anybody know how to get this working?
    Thanks

  • Can no longer upload photos - ODBC data source error [was: Photoshop Album Starter Edition 3.2]

    Hi everyone! Thanks in advance for any help somone  can provide!
    I can no longer upload photos, which sucks. I get an error message thats says : The ODBC data source returned the following error: "[Microsoft][ODBC Microsoft Access Driver] The search key was not found in any record."
    I understand adobe is no longer issuing updates for this program, but is there anything I can do to salvage it? Oh I hope there is. Thanks again!

    [Moved from Photoshop forum to Photoshop Album Starter Edition forum]

  • Lr cannot read Catalog .psa (Photoshop Album Starter Edition 3.2)

    Hello,
    I use Photoshop Album Starter Edition 3.2 to manage my 12'000 photos (with tags) and I'll move to Lightroom. But I cannot import the catalog .psa into Lr2.3.
    Lr can read only catalog .lrcat, .lrdb, and .aglib !
    I renamed catalog .psa to catalog .aglib etc. but nothing happenend.
    My idea, I will :
    1. Install PSE 7,
    2. read catalog .psa (is it possible?)
    3. export into catalog .lrcat, .lrdb, or .aglib (is it possible?)
    4.then  import with Lr with all the tags
    Is there someting easyer to do ?
    My brain is boiling :-\
    Thank you
    Tennistin

    PSE7 should be able to convert your catalog. I don't really know, as I haven't tried and haven't read about converting PSA Starter Edition catalogs, but I am optimistic.
    The problem is that the current version of Lightroom will not read PSE7 catalogs. Probably when Lightroom 3 comes out, it will read PSE7 catalogs. So, I would search the Internet to see if the trial version of PSE6 or PSE5 is available somewhere for download. If you can find one of those versions, they will convert your PSA catalog as well. Lightroom definitely does convert PSE5 and PSE6 catalogs.

  • Photoshop Album 2.0 - Can I change Photo shooting dates

    My friend gave me Photoshop Album 2.0 to help her keep track of her pictures.  Problem is, she didnt set her camera to the right date, so some of the pictures have a "shoot" date that is not correct.  For example, the camera may have imprinted June 1, but we know because of the content of the picture that it actually was August 21.  So, can I manually correct these dates for her?
    Thanks for any help you can give me?
    I know that I can get the new trial version, but she uses the calendar version that is on the old 2.0 and wants to stick with it.

    You can use PhotoInfo to change the dates on a single or batch of photos. You can even do it within iPhoto by selecting PhotoInfo as the editor to use when you double click on a photo. But iPhoto won't recognize the changes unless it's exported and reimported. You can use PhotoInfo to batch check/change your photos before importing into iPhoto.
    What I've done is to export the full sized images to a folder on the desktop, named the folder the same as the roll they were in, run Photoinfo on the batch and then drag the folder into the open iPhoto. Then delete the original roll. Works fine.
    OT

  • I have Adobe photoshop cs5. need to update camera raw, cause my camera raw is  2010and does not read my camera,  I went out and downloaded the new one and it does not link to adobe photoshop cs5

    I have moved my Photoshop CS5 to my traveling computer,a Surface Pro 3.  I have photoshop loaded but in trying to look at raw images it says my camera raw does not support the sony alpha 65 which is what I have.  I went out and tried to download the newest raw version and even went out and did a zipfile download and it will not update my current version.  What should I do

    I have 6.0.  Tried to download newest verion and it will not download.  Went out and then downloaded a zipfile and it still will not download, thus cannot look at my raw pictures.
    Thanks, John
    m: gener7 
    Sent: Thursday, December 11, 2014 6:01 PM
    To: JOHN STAHLY
    Subject:  I have Adobe photoshop cs5. need to update camera raw, cause my camera raw is  2010and does not read my camera,  I went out and downloaded the new one and it does not link to adobe photoshop cs5
    I have Adobe photoshop cs5. need to update camera raw, cause my camera raw is  2010and does not read my camera,  I went out and downloaded the new one and it does not link to adobe photoshop cs5
    created by gener7 <https://forums.adobe.com/people/gener7>  in Photoshop General Discussion - View the full discussion <https://forums.adobe.com/message/7007148#7007148>

  • Why does a standalone program created in Labview 8.5 try connecting to the internet when the program only reads data through the serial port? Firewalls object to progams that contact the internet without permission.

    why does a standalone program created in Labview 8.5 try connecting to the internet when the program only reads data through the serial port? Firewalls object to progams that contact the internet without permission.
    The created program is not performing a command I have written when it tries to connect to the internet, it must be Labview that is doing it. How do I stop this from happening? 
    Any help would be very appreciated.

    It looks that way..
    "When LabVIEW starts it contacts the service
    locator to removes all services for itself. This request is triggering
    the firewall.This is done in case there were services that were not
    unregistered the last time LabVIEW executed- for example from VIs that
    didn't clean up after themselves"
    This is not yet fixed in LV2009.
    Message Edited by Ray.R on 11-04-2009 12:25 PM

Maybe you are looking for