"Cannot read to or from Disc"

Hello
When I try to sync my iPod it comes up with a message
"Attempting to copy to the disk "IPOD" failed. The disk could not be read from or written to."
I saw another user having this problem earlier but no one seems to know whats going on. If anyone does please help because not only is this frustrating, it's also strengthening my intolerance for Apple iPods (I got mine as a birthday present and decided to give it a chance)
PLEASE HELP!
Amanda
Second Generation iPod nano   Windows XP  

there is a document you can use apparently to look this up if anyone has probs again
Have you looked at the troubleshooting >document? "Disk cannot be read from or >written to" when syncing iPod

Similar Messages

  • Hello MacBook Pro Musicians- I cannot read sheet music from the ipad. It is too small. I want to connect a large monitor, hopefully wirelessly to my 13 inch macbook pro. what would I need to connect ? Any suggestions on how to keep monitor from falling?

    Hello Macbook Pro Musicians--I cannot read sheet music from my 13" macbook or from an IPad. The print is too small for these aging eyes! So I need to get a large monitor to attach to the Macbook.  I want the monitor to be connected wirelessly or using a blue tooth.  This will eliminate alot of potential mishaps
    when playing out.  Also I am having a time figuring out how I am going to safely keep the monitor on somekind of music stand without falling!!!  Can anyone help me with this?

    Hi Julius,
    As you can see in my profile section, my MBP is older by 5 years, 2GB RAM and with regards to question 1 (Q1), has no problems with having all those programs open at the same time with the possible exception of Photoshop since I use Gimp instead. With twice the RAM and much overall much better specs, Photoshop shouldn't be an issue. But you listed some other activities that might need that additional RAM. But the advise most give is to not get it from Apple but from a third party.
    Q5 - I always get Apple Care. Only had to use it once but it paid for itself that one time.
    Sorry, can't help you much with the questions you really want answered since I won't have a new MBP until (hopefully) next week but for Q4, I believe it depends on the peripheral. My current monitors are too old to allow them to be hooked up in a chain. Supposedly, if the monitors do have the ports, you could via the MBP Thunderbolt port. The speeds are also dependent upon the peripheral. If the external hard drive is using a USB 2 port, you are limited by that speed (480 Mb/s). If it has a Thunderbolt port, then from what I understand, we, my friend, are in for some great times because I believe your RAM will have the ability to access data as fast as it can take it at 10Gb/s (and if will need those kinds of speeds, the 8GB of RAM may be the way to go). The Thunderbolt demos on YouTube where they are accessing four video files from a Raid drive, then sending them back out via Final Cut Pro to a monitor are amazing. I'll probably never push this machine to anywhere near it's limits but I can't wait to see what others do.
    Peace,
    Jeremiah

  • Subprocess 33 was not successful. Master cannot read return value from S 33

    Hi All,
    We are on BI 7.0 SP 19.
    We have submitted a planning sequence in the background with automatic packaging.
    The planning sequence has two steps:
    Step 1. Z_PLNG_FUNCTION1
    Step 2. Z_PLNG_FUNCTION2
    As per automatic packaging, the system chose 0ACCOUNT for packaging.
    When submitted, each step has been submitted to 30 packages as 30 subprocesses.
    For Step 1, the log shows that All subprocesses  executed.
    For Step 2, the log shows that the subprocess 33 and 58 failed, which means subprocess #3, and # 28 for the step 2 as the subprocess is numbered in the log in combination with step 1.
    The messages in the log for the failed subprocesses are as follows:
    @5C\QError@     Subprocess 33 was not successful
    @5C\QError@     Master cannot read return value from subprocess 33
    @5C\QError@     Subprocess 58 was not successful
    @5C\QError@     Master cannot read return value from subprocess 58
    Our question is on how to find the exact cause of the subprocess failure.
    I tried to look for the details on the error messages, they have been not helpful.
    What is meant by 'Master cannot read return value from subprocess' and how to get the exact cause of the failure?
    Thanks in advance,
    Best Regards,
    - Shashi

    Shashi,
    implement the following notes and check again:1368659, 1525723, 1532061.
    Regards,
    Marc
    SAP Techology RIG

  • Cannot read the output from windows command.

    Hello
    I have the following classes
    package cmd;
    import java.io.IOException;
    public class CMD {
        public CMD(){
            ProcessBuilder pb = new ProcessBuilder()
            .command("cmd.exe","/c","del *.*")
            .redirectErrorStream(false);
            Process p;
            try {
                p = pb.start();
                StreamGobbler errorGobbler = new StreamGobbler(p.getErrorStream(), "ERROR");
                // any output?
                StreamGobbler outputGobbler = new StreamGobbler(p.getInputStream(), "OUTPUT");
                // start gobblers
                outputGobbler.start();
                errorGobbler.start();
            } catch (IOException e) {
                // TODO Auto-generated catch block
            System.out.println("eee "+e.getMessage());;
        public static void main(String[] args) {
            System.out.println("x");
            new CMD();
            System.out.println("x");
    and
    package cmd;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    public class StreamGobbler extends Thread {
        InputStream is;
        String type;
        StreamGobbler(InputStream is, String type) {
            this.is = is;
            this.type = type;
        @Override
        public void run() {
            try {
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line = null;
                while ((line = br.readLine()) != null)
                    System.out.println(type + "> " + line);
            catch (IOException ioe) {
                ioe.printStackTrace();
    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    Please note that the above example is important because I am developping a tool and it is mandatory for that tool to parse the output from a windows batch command.
    Best regards,

    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    No - but I will give you a hint about ProcessBuilder and how to develop software properly.
    Hint #1: Don't try to automate something that you don't know, or understand, how to do manually.
    a. Do you know how to execute 'del *.*' manually in a command window?
    b. Did you try that manually to see what happens?
    My guess is 'no'. If you had you would know that the response to a 'del *.*' command is going to be this:
    Are you sure (Y/N)?
    And your 'java class execution' doesn't finish because the 'del' command is waiting for you to answer that question.
    Hint #2: Don't try to use ProcessBuilder for an application that requires console input unless you first know how to provide that console input via your Java code.
    Your code will wait forever since it does NOT answer that question.
    Search the net and The Java Tutorials and  you can find examples of executing command line utilities. Then try those examples first and make sure that:
    1. They work for you
    2. You understand HOW they work
    Then you can modify those examples to do what you want to do.

  • Recovery Manager is failing to read backup files from disc

    Product Name:
    HP G56-129WM
    Operating System:
    Windows 7
    I used the HP Recovery Manager (F11) to backup my files instead of using the Windows backup. The HP Recovery Manager back uped my files on 2 dvd discs. I then restored my laptop to factory settings. When I go to restore my files, it will only go to 40% and then ask me to insert backup DISC 2. When I insert the disc, it fails to read it. The disc pops out and I keep getting a request to insert DISC 2. What is going on?
    This question was solved.
    View Solution.

    I have a related but different issue with file back-up using HP recovery manager.
    I have a Pavilion g7-1070us laptop that failed to start and simply displays a blue-screen with a blinking cursor (no error message). I could NOT get into safe-mode by hitting F8, but was able to activate the “HP recovery manager” by hitting F11. I was trying to back-up my files before triggering the system restore. It asked me what types of files to back-up, then scanned the computer for these files and was finalizing the files for back-up; then suddenly an error message showed up saying something like "No storage device detected. Make sure the removable disc drive is connected to computer". But I have both a DVD sitting in the optical drive and a USB drive attached!!!!!! Apparently the recovery manager doesn’t see them?
    Can someone throw me a life-saver here? If I cannot recover my files, I cannot proceed with the system restore and I am forever stuck here!!!!!!
    Please help!!!! Much appreciated!!

  • Cannot read backup file from PC on Mac

    I am trying to move my Photoshop Elements 9 catalog from my PC to my Mac.
    I have backed up the catalog to an external HDD but when I connect it to the Mac I can see the folder but I cannot open it. The backup is big, over 200GB, could this be the problem? I have several other backups on the same HDD but the MAC cannot read any of them.
    I can open the folders without any problem on a PC.
    I took the HDD to a Mac "Genius Bar" and they could not open the folders on their Mac either and had no idea what could be causing the problem.
    I had no problem migrating to the Mac about a year ago when I first got it, but I suppose the backup would have been smaller then.
    Has anybody got any idea what the problem could be

    In the Backup folder, there is a Backup.tly file which needs to be specifically seleted while restoring the backup. So while you go for File >Restore catalog > try to choose All files from the format dropdown to see this tly file.
    Thanks
    Andaleeb

  • I cannot read a video from icloud

    Hi,
    I use ICLOUD with an IPAD, IPHONE and a PC WINDOWS
    I cannot read video (built with IPHONE) from ICLOUD, I see the video file with my IPAD or with my IPHONE but when I click on it, the video does not start.(it is always in a loading phase); I have not this problem when I read this video with ma windows PC that I connect on ICLOUD;
    could you help me
    THANKS
    Michel

    Can you please tell what the error message says?

  • Cannot install Acrobat X from disc, incorrectly states computer doesn't meet system reqmnts.

    trying to install Acrobat X Standard from disc.  Computer gives me message that I have not met the system requirements.  But I have, so what do I do?

    First check form the below link that you actually meet the system  requirements.
    http://www.adobe.com/products/acrobatpro/tech-specs.html
    If you do, then copy the contents of the disc to a folder on the desktop and try running the installer and check if it works.

  • Cannot read Property file from JSP in a Web Module Project

    I have tried to read the properties file in two ways but am not able to read it because i cannot find the correct path of the properties file.
    1st Method :
    Properties props = new Properties();
    InputStream is =
    application.getResourceAsStream(
    "test.properties");
    if (is != null) {
    props.load(is);
    is.close();
    Enumeration keysEnum = Props.propertyNames();
    while (keysEnum.hasMoreElements()) {
    out.println(keysEnum.nextElement()) ;
    2nd Method :
    Here "com.sap.package" is the package name and "test" is the Properties file name
    ResourceBundlebundle = ResourceBundle.getBundle("com.sap.package.test");
    for (Enumeration e = bundle.getKeys(); e.hasMoreElements();)
    String key = (String) e.nextElement();
    out.print((String) e.nextElement());
    String s = bundle.getString(key);
    request.getComponentSession().putValue(key, s);
    I cannot read the properties file even when I keep in it the WEB-INF folder.

    Properties props = new Properties();
    InputStream is = this.class.getClassLoader().getResourceAsStream(/test.properties);
    if(is != null){
    props.load(is);
    Keep the test.properties in the classes folder under the web-inf folder.
    Thanks,
    Tim

  • Can see shared CD drives on MBA, but cannot read any data from disks

    Puzzling one here.
    Have a MBA and am trying to use the shared drives on either a Windows XP computer, or MacBookPro notebook. Both computers are on the same wireless network, and both computers have DVD/CD sharing enabled.
    In the RemoteDisk shortcut on the MBA, I can see both computers and their shared drives, and I can even see the title of the disks that are in the drives, however, I cannot see any of the data on the disks. It tells me 0MB at the bottom of the window.
    The MBA has all updates installed, and I even tried to manually install the RemoteDisk/Sharing update from Apple.
    I found this post, and tried the commands in Terminal, but that did not help: http://jasonevangelho.com/2008/11/02/how-to-really-enable-remote-disc-dvd-drive- sharing-non-air-macbook/
    Any idea's?

    Oh yeah, I forgot to say that the wireless router is a Time Capsule.

  • Cannot import to iTunes from disc

    I am unable to import to iTunes from a CD in my optical drive E. I am able to install programs using the same drive, but when a disc is inserted, it makes the "whirring" sound spinning the disc, then stops soundlessly. It also is not recognized by iTunes diagnostics, and no disc shows in the iTunes sidebar. I cannot import using Windows Media Player, either. However, there seems to be a recognition of an inserted disc because when I have iTunes closed, and then insert a disc, iTunes opens automatically (following the "Import" upon inserting disc preference under "Preferences"). Advice would be most appreciated.

    I forgot a couple of details. First, my hard drive has recently been almost completely filled (about 3% left), and I have been wondering whether this could be related. Additionally, the discs I have tried to import worked fine in another computer. The iTunes diagnostics readout is below:
    Microsoft Windows Vista Home Premium Edition Service Pack 1 (Build 6001)
    Dell Inc. MP061
    iTunes 8.2.1.6
    QuickTime 7.6.2
    FairPlay 1.4.10
    iPod Updater Library 8.1d19
    CD Driver 2.1.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.5.2.2
    Apple Mobile Device Driver 1.43.0.0
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number 9D4C74A35BB5054F
    Current user is not an administrator.
    The current local date and time is 2009-08-23 14:40:43.
    iTunes is not running in safe mode.
    Video Display Information
    Intel Corporation, Mobile Intel(R) 945GM Express Chipset Family
    Intel Corporation, Mobile Intel(R) 945GM Express Chipset Family
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** CD/DVD Drive Tests **
    LowerFilters: PxHelp20 (2.0.0.0), DRVMCDB (1.0.0.1), DLACDBHM (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.1.0.1),
    E: HL-DT-ST DVD+-RW GSA-T11N, Rev A103
    Failed trying to read media, error 281.
    Writing CD text is turned on in the preferences. If you’re having problems burning CDs, try turning this preference off.

  • I cannot read after changing from pdf to word.  Top of word is missing

    I Purchased Adobe Export PDF and I have been unable to read anything i havew converted.
    I cannot chat because when I chat with one of Adobe Reps i get cut off in the middle of the convedrsation. Your help would be appreciated.

    Hi chaslouusn,
    When you have a moment - would you mind sending me the docs directly? [email protected]
    Regards and looking forward to hearing from you!
    Stacy

  • Child package cannot read param value from parent ssis package

    Hi all,
    I think I must be crazy !! i have a big problem in my ssis project .
    i have more than 40 package one parent and 39 childs 
    i use configuration method to get variable values from parent to child packages and it work well .. but when i copy my ssis project
    to the production server i face the following problem .. childs package didn't read the variables values from the parent package 
    i revised the configuration many times i can't find any missing !!
    any help please ...
    Thanks,

    Do not copy the packages from the projet to the production server, but you must generate the manifest installation including your configuration, and deploy them.
    Note : not forget to include the configuration.
    To learn more about how to install the package :
    Lesson 1:
    http://msdn.microsoft.com/en-us/library/ms365332(v=sql.105).aspx
    Lesson 2 :
    http://msdn.microsoft.com/en-us/library/ms365329(v=sql.105).aspx
    Lesson 3 :
    http://msdn.microsoft.com/en-us/library/ms365321(v=sql.105).aspx

  • Cannot read multiple resultsets from transaction datasource

    I get a SQL exception "This object was closed() and cannot be used anymore."
    when I try to access the first row of the second result set from a stored procedure.
    This occurs when the code is running within an EJB using a transaction-capable
    datasource hooked to a connection pool that uses the MSSQLSERVERv7 JDriver
    to talk to SQL Server 7.0.
    I noted that the resultset class used is weblogic.jdbc20.rmi.SerialResultSet.
    The error occurs during the resultSet.next() call even though the resultset is
    not null and getUpdateCount() returns -1.
    However, the same code works correctly when run in a simple main() procedure from
    the DOS command line, connecting directly to the database using only the classes
    supplied with the JDriver product. The resultset class used in this case is
    weblogic.jdbc.mssqlserver4.TdsResultSet.
    The stored procedure is very simple, it just has two lines: SELECT 'Hello' and
    SELECT 'World'. The Java code follows.
    <PRE>
    // ... code to get the connection ...
    CallableStatement callableStatement = connection.prepareCall("{CALL spTest}");
    callableStatement.execute();
    ResultSet resultSet = callableStatement.getResultSet();
    if ((resultSet != null) && resultSet.next())
    System.out.println("Row from first result set:" + resultSet.getString(1));
    callableStatement.getMoreResults();
    resultSet = callableStatement.getResultSet();
    if ((resultSet != null) && resultSet.next()) // this call to next() throws the
    exception
    System.out.println("Row from second result set:" + resultSet.getString(1));
    resultSet.close();
    callableStatement.close();
    connection.close();
    </PRE>
    I am running WL5.10sp11 with mssqlserver4v70sp11 on NT4.0sp6a and JDK1.3.0_02
    (HotSpot Client VM).
    Regards,
    Tom B.

    Tom Bechtold wrote:
    >
    Joe,
    Here is the debug messages and trace with your diagnostic jar.
    I hope this helps - Tom
    we got Hello
    java.sql.SQLException: java.lang.Exception: ResultSet originally closed at:
    at weblogic.jdbcbase.mssqlserver4.TdsResultSet.close(TdsResultSet.java,
    Compiled Code)
    at java.lang.Exception.<init>(Unknown Source)
    at weblogic.jdbcbase.mssqlserver4.TdsResultSet.close(TdsResultSet.java,
    Compiled Code)
    at weblogic.jdbcbase.jts.ResultSet.close(ResultSet.java:260)
    at weblogic.jdbc20.rmi.internal.ResultSetImpl.close(ResultSetImpl.java:53)
    at weblogic.jdbc20.rmi.SerialResultSet.close(SerialResultSet.java:54)
    ... rest of EJB call stack ...Hi. I do want to see the whole stack trace please, and also the EJB code.
    thanks,
    Joe
    >
    Joseph Weinstein <[email protected]> wrote:
    Tom Bechtold wrote:
    Hi Joe,
    I pasted your sample program into my bean and ran it under
    WL510sp11 and JDriver 5.1.0sp11, and it did exhibit the error
    as my code did.
    But it runs fine under WL510sp10 with JDriver 5.1.0sp11.
    Thanks for your great support,
    TomYou're very welcome. Please take the attached jar file, and add it
    at the front of the server's weblogic.classpath, by editting the
    startWebLogic script, and let me know what happens. This jar contains
    the ResultSet class, with a hack to remember where it was closed, and
    print that out if/when it is closed a second time.
    Joe
    Joseph Weinstein <[email protected]> wrote:
    Tom Bechtold wrote:
    A follow-on note: when I back out to Service Pack 10, the problem
    is
    not there,
    so it seems that it is an issue with Service Pack 11.
    - Tom Bechtold
    "Tom Bechtold" <[email protected]> wrote:
    I get a SQL exception "This object was closed() and cannot be used
    anymore."
    when I try to access the first row of the second result set from
    a
    stored
    procedure.
    This occurs when the code is running within an EJB using a transaction-capable
    datasource hooked to a connection pool that uses the MSSQLSERVERv7JDriver
    to talk to SQL Server 7.0.
    I noted that the resultset class used is weblogic.jdbc20.rmi.SerialResultSet.
    The error occurs during the resultSet.next() call even though theresultset
    is not null and getUpdateCount() returns -1.Hi. You say that getUpdateCount() returns -1. I don't see that inthe
    code you sent,
    so you probably just gave us a representative sample of the code you
    run. I did
    runs uch code with the driver alone, and it works as you say. I will
    see if I can
    set up a server to do this via a DataSource, but in case anyone wants
    to help/race with
    me :-), here's simple code to run. If you convert it to a DataSource
    connection,
    and it behaves differently, I'll send you a diagnostic class to seewhat's
    up...
    Joe
    Connection connection = null;
    try
    Properties properties = new Properties();
    properties.put("user", "sa");
    properties.put("password", "");
    Driver d = (Driver)Class.forName("weblogic.jdbc.mssqlserver4.Driver").newInstance();
    connection = d.connect("jdbc:weblogic:mssqlserver4:JOE:1433",
    properties);
    // or get connection from DataSource...
    Statement statement = connection.createStatement();
    try {
    statement.execute("drop procedure bla");
    } catch (Exception e){}
    statement.execute("create procedure bla as select 'Hello
    ' select 'world'");
    CallableStatement c = connection.prepareCall("{ call bla()
    c.execute();
    ResultSet resultset = c.getResultSet();
    while(resultset.next())
    System.out.println("we got " + resultset.getString(1));
    resultset.close();
    c.getMoreResults();
    resultset = c.getResultSet();
    while(resultset.next())
    System.out.println("we got " + resultset.getString(1));
    resultset.close();
    catch(SQLException exception1)
    exception1.printStackTrace();
    finally
    try { connection.close();} catch(Exception ex) {}
    However, the same code works correctly when run in a simple main()procedure
    from the DOS command line, connecting directly to the database
    using
    only
    the classes supplied with the JDriver product. The resultset classused in this
    case
    is weblogic.jdbc.mssqlserver4.TdsResultSet.
    The stored procedure is very simple, it just has two lines: SELECT
    'Hello'
    and SELECT 'World'. The Java code follows.
    // ... code to get the connection ...
    CallableStatement callableStatement = connection.prepareCall("{CALLspTest}");
    callableStatement.execute();
    ResultSet resultSet = callableStatement.getResultSet();
    if ((resultSet != null) && resultSet.next())
    System.out.println("Row from first result set:" + resultSet.getString(1));
    callableStatement.getMoreResults();
    resultSet = callableStatement.getResultSet();
    if ((resultSet != null) && resultSet.next()) // this call to next()throws the
    exception
    System.out.println("Row from second result set:" + resultSet.getString(1));
    resultSet.close();
    callableStatement.close();
    connection.close();
    I am running WL5.10sp11 with mssqlserver4v70sp11 on NT4.0sp6a and
    JDK1.3.0_02
    (HotSpot Client VM).
    Regards,
    Tom B.--
    B.E.A. is now hiring! (12/14/01) If interested send a resume to [email protected]
    DIRECTOR OF PRODUCT PLANS AND STRATEGY San Francisco,
    CA
    E-SALES BUSINESS DEVELOPMENT REPRESENTATIVE Dallas, TX
    SOFTWARE ENGINEER (DBA) Liberty Corner,
    NJ
    SENIOR WEB DEVELOPER San Jose,CA
    SOFTWARE ENGINEER (ALL LEVELS), CARY, NORTHCAROLINA
    San Jose, CA
    SR. PRODUCT MANAGER Bellevue,WA
    SR. WEB DESIGNER San Jose,CA
    Channel Marketing Manager - EMEA Region London, GBR
    DIRECTOR OF MARKETING STRATEGY, APPLICATION SERVERS San Jose,CA
    SENIOR SOFTWARE ENGINEER (PLATFORM) San Jose,CA
    E-COMMERCE INTEGRATION ARCHITECT San Jose,CA
    QUALITY ASSURANCE ENGINEER Redmond, WA
    Services Development Manager (Business Development Manager - Services)
    Paris, FRA; Munich, DEU
    SENIOR SOFTWARE ENGINEER (PLATFORM) Redmond, WA
    E-Marketing Programs Specialist EMEA London, GBR
    BUSINESS DEVELOPMENT DIRECTOR - E COMMERCE INTEGRATION San Jose,CA
    MANAGER, E-SALES Plano, TX--
    B.E.A. is now hiring! (12/14/01) If interested send a resume to [email protected]
    DIRECTOR OF PRODUCT PLANS AND STRATEGY San Francisco,
    CA
    E-SALES BUSINESS DEVELOPMENT REPRESENTATIVE Dallas, TX
    SOFTWARE ENGINEER (DBA) Liberty Corner,
    NJ
    SENIOR WEB DEVELOPER San Jose, CA
    SOFTWARE ENGINEER (ALL LEVELS), CARY, NORTH CAROLINA
    San Jose, CA
    SR. PRODUCT MANAGER Bellevue, WA
    SR. WEB DESIGNER San Jose, CA
    Channel Marketing Manager - EMEA Region London, GBR
    DIRECTOR OF MARKETING STRATEGY, APPLICATION SERVERS San Jose, CA
    SENIOR SOFTWARE ENGINEER (PLATFORM) San Jose, CA
    E-COMMERCE INTEGRATION ARCHITECT San Jose, CA
    QUALITY ASSURANCE ENGINEER Redmond, WA
    Services Development Manager (Business Development Manager - Services)
    Paris, FRA; Munich, DEU
    SENIOR SOFTWARE ENGINEER (PLATFORM) Redmond, WA
    E-Marketing Programs Specialist EMEA London, GBR
    BUSINESS DEVELOPMENT DIRECTOR - E COMMERCE INTEGRATION San Jose, CA
    MANAGER, E-SALES Plano, TX
    B.E.A. is now hiring! (12/14/01) If interested send a resume to [email protected]
    DIRECTOR OF PRODUCT PLANS AND STRATEGY San Francisco, CA
    E-SALES BUSINESS DEVELOPMENT REPRESENTATIVE Dallas, TX
    SOFTWARE ENGINEER (DBA) Liberty Corner, NJ
    SENIOR WEB DEVELOPER San Jose, CA
    SOFTWARE ENGINEER (ALL LEVELS), CARY, NORTH CAROLINA San Jose, CA
    SR. PRODUCT MANAGER Bellevue, WA
    SR. WEB DESIGNER San Jose, CA
    Channel Marketing Manager - EMEA Region London, GBR
    DIRECTOR OF MARKETING STRATEGY, APPLICATION SERVERS San Jose, CA
    SENIOR SOFTWARE ENGINEER (PLATFORM) San Jose, CA
    E-COMMERCE INTEGRATION ARCHITECT San Jose, CA
    QUALITY ASSURANCE ENGINEER Redmond, WA
    Services Development Manager (Business Development Manager - Services) Paris, FRA; Munich, DEU
    SENIOR SOFTWARE ENGINEER (PLATFORM) Redmond, WA
    E-Marketing Programs Specialist EMEA London, GBR
    BUSINESS DEVELOPMENT DIRECTOR - E COMMERCE INTEGRATION San Jose, CA
    MANAGER, E-SALES Plano, TX

  • Aperture cannot read RAW exported from IDC?

    When I shoot RAW with the kit lens of my nex6 it usually get distorted pretty bad. So what I'm trying to do is first open it up with Sony's image editor called IDC (latest version) and then export the RAW file from IDC then import that fixed file back into Aperture. However for some odd reason when Aperture imports a IDC exported file, not only is the distortion not fixed but the photo now has this weird green cast to it.
    How do I fix this? I've already tried regenerating previews, that doesn't help.

    TIFF would be the better call.  "Truly lossless" is difficult to say; changes are "baked in" to the RAW file on the conversion.
    Still, the PTlens plugin recommended in another thread is probably the better call:
    http://www.epaperpress.com/ptlens/

Maybe you are looking for

  • System Profiler Has Duplicate Copies of Apps, why?

    I have 2 identical model enterprise disks from WD @7200rpm, 1TB. When I run the Black Magic disk speed test program, the newest disk reports read& write @ 116 mbps and the older disk reports about 126 mbps. That difference is enough to enable the old

  • New MB w/ X3100: graphics choppy, previous 950 MB is fine

    Hi all, Just got my wife a brand new Macbook, came with 10.5.2 installed. The dock animations, genie, and all general graphics/animations are VERY choppy. I haven't installed anything new on it, no hacks or anything. I've found many posts here and we

  • Unable to set up work email account

    My company went through server maintainence during Christmas and I cannot connect to my work email account through Blackberry.  The IT dept told me that they have not changed the server settings on SMTP or POP3.  They have given me all the user and s

  • IPhoto Slideshow Export Question

    How do you export an iphoto slideshow so that it will play on a normal DVD?

  • Putting songs together as albums

    hello i just upgraded to itunes 7 and there i can subdivide my songlist into showing whole albums to make it more clearly arranged (sorry, badly expressed) but the program refuses to let appear certain songs in the same album column, even if i rewrit