Copying QT file to PC

Hi
I have a QT file that looks great on a Mac with a data rate of 30 Mb. However when I copy the file to a PC it looks like crap and has a bit rate of less than 2MB. Any idea how to keep the same quality as on the Mac?
Thanks

There are separate forums if you are using Adobe Photoshop Elements or Adobe Photoshop Lightroom. Please use the forum that corresponds to the software you are using.
http://forums.adobe.com/community/photoshop_elements
http://forums.adobe.com/community/lightroom

Similar Messages

  • How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?

    How can I copy mp3 files from my Itunes library to an SD card for use in a non-apple phone?  I can physically copy the tunes as mp3's but the phone does not seem to be able to play all of them.   Do I need to copy an entire album or can I just pick & choose individual songs?   The phone is question is an LG running who knows what for an operating system.

    AAC is Advanced Audio Coding.  Basically it's a format that sounds better than MP3 but doesn't take up as much space as a lossless format (like you'd have on a CD).  More than likely you've had that encoding turned on when you ripped your music into itunes (it's the default encoder).  Therefore your LG phone won't play them.
    You need to turn off the AAC format by going to the iTunes menu, Preferences, General (at the top), then clicking the "Import Preferences" button.  Change the AAC Encoder to MP3 Encoder.  After that you'll have to make MP3 copies of your songs by right clicking them and selecting "Create MP3 Version."  You'll get a copy of the song that should transfer to your SD card and have MP3 encoding.  Hopefully your phone will play that.

  • How do i retrieve file vault protected files from an external hard disk that used to be my mbp's hard drive? the hard disk got corrupted and will no longer boot. I put it in an enclosure and attempted to copy my files but failed because of FV encryption.

    This external hard disk used to serve as the main drive of my mbp. It got corrupted and the OSX would no longer load. I upgraded to a 500gb hd and used the old hd as an external drive. I tried to copy my files but i could not access them because of the filevault encryption. 110gb of hd space appears as used which means that my files are still in the drive. Is there a way to retrieve these files? thanks

    According to your post, you're using Leopard, so FileVault only encrypts your user folder (unlike Lion). On the mounted external drive, in your user folder, you should see a file called username.sparsebundle, with username being your user name. Double-click that file to open it and it should prompt you for a password. Type in your password and the file will mount as a volume in Finder. You should be able to copy all of your files over.

  • TC and WD500 External drive - Locks up when copying large files

    I have a TC with a Western Digital 500GB my Book connected to the USB port on the TC that I use for network Storage. Everything works fine until I try to copy large files or directories from the Finder mounted share. After the copy freezes the external drive can no longer be seen by airport utility. If I look at disks it sees the disk but no partition. I have to power cycle the external drive to have TC see the drive again. Then I disconnect the drive and plug it in directly to the MAC and run disk utility and his repairs the journal. I have to do the repair every time it locks up. Should the external drive be formatted different or does it have to be connected to a USB hub. Or is this just a bug with the TC and afp ?

    I have this very same problem.
    I tried to copy a 4GB+ folder from the Macbook to the 500GB MyBook attached to my TC and it froze.
    Now the the files on the MyBook are invisible when attached to the TC ("0 Items") but are available when the drive is connected directly to the Macbook. I have run disk utility but it hasn't helped. The disk is FAT 32 formatted and the files on the MyBook are still invisible over the network.
    When the drive attached to the Macbook directly I can see a 'phantom' file with the same title as the 4GB+ folder I'd tried to copy. This file is "ZERO KB" and it cannot be deleted (error code -43).
    Anyone have a clue what is happening here?

  • OraRRP Error with "Unable to copy data file;Error code 2, check disk space"

    Hi,
    Some users get this message -"Unable to copy data file;Error code 2, check disk space" when run report with orarrp, but most users do not get it.
    I check free space at both server and client side, they are very sufficient.
    I also checked directory exists for REPORTXX_TMP variable.
    My user call reports via URL (rwservlet) and it occur for all reports.
    How I can solve this problem?
    Thanks in advance.
    Tawatchai R.

    Hi,
    have the same problem now. One user has temporarily problems to download .rrpa files via URL (rwservlet) request. Error code: -"Unable to copy data file;Error code 2, check disk space". Did you get a solution??
    Thanks in advance. Axel

  • Download Helper, even with paid converter upgrade, gives "Invalid Capture File" errors and will not record audio, with "File Creation Error - Unable to rename/copy audio file" Error.

    Download Helper Screen Capture worked to capture video if the default "no audio" option is active. But, no audio. The "speakers" or "microphone" audio options are confusing....the audio to be captured is from the video, so what do you choose? With either "speakers" or "microphone" selected, the captured file has poor audio and no video. Re-capture efforts (speakers) get "Invalid capture file error" and "File Creation error- Unable to rename/copy audio file"
    The paid upgrade of "Converter" doesn't work.
    Instructive documentation - not very good.
    Suggestions - Need time delay between initiation of "Record" and starting the video to be recorded.
    Could use timer tracking of the record process.
    Are there operating system limitations? (Have Windows XP Pro)

    That is an issue for the developer of that Download Helper.

  • Copy a file from local drive to network drive!

    The subject says it all but I'll explain. I have a web application that runs on a tomcat and mysql. I have a bunch of clients in a local network that uses the application.
    Server is running Windows 2003 server and clients are running windows XP.
    On a client request a file is created on the server in "temp" folder. The file name is "justAFile.txt".
    On the client pc a folder "temp" is shared for reading/writing.
    What I want is the server to take the IP address of the client, and then based on that address to copy the file "justAFile.txt" to it (for example "\\192.168.0.20\temp\" - that is the client address).
    I have the address of the client:
    String userAddress = request.getRemoteAddr();I use this code:
    FileOutputStream outFile;
    PrintStream p;
    String bonFileName = (justAFile.txt");
    String destinationFileWithPath = ("\\\\192.168.0.20\temp\\skladPrint\\"+bonFileName);
    try {
        outFile = new FileOutputStream(destinationFileWithPath);
        p = new PrintStream( outFile );
        p.println ("a textto be written on a file");
        p.close();
    } catch (Exception e) {
         %>Error writing to file<br><%
    }This code can create a file on a local drive with no problems, but when I try on a network drive it fails. Even for testing purposes I set the shared folder to a maped drive "Z:", and again no luck.
    I've spend all my day till now in reading articles in inet, but haven't found one that will solve the problem.
    I also tried creating a batch file (exec.bat) that has in it:
    move \temp\*.txt \\192.168.0.20\temp
    and then executing it with:
    String[] executeCommand1 = { "cmd.exe", "/c", "\\temp\\exec.bat" };
    Process p1 = Runtime.getRuntime().exec(executeCommand1);
    p1.waitFor();But again no luck. When I execute the file from command prompt, it moves the file to the shared folder, but when I start it from the java application with the posted code, it DOES NOT move the file...
    Any help will be appreciated...

    Try using the jCIFS project. This package allows you to access shared folders on a PC if you have a good username/password.

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • ITunes won't copy music files to Media folder when songs are dragged

    I am trying add songs from my external hard drive to my iTunes Library.
    I have the following options checked:
    "Keep iTunes Media folder organized."
    "Copy files to iTunes Media folder when adding to library."
    In the past, I could just drag files from my hard drive into the iTunes song list and add them to the library. iTunes would successfully make a copy of the file to the iTunes Media folder so that I could disconnect the hard drive and still play the songs.
    Suddenly, this no longer works. iTunes won't make a copy of the file anymore. It won't even make a copy of files located on my desktop.
    I found a workaround -- copy the files from my hard drive to the desktop. Then I have to go to File > Add to Library in order for it to work.
    It's an extra step, but it was VERY annoying to have to figure out.
    So my question -- Is this an iTunes bug or some kind of deliberate attempt at making it hard to use files not purchased through iTunes?
    I noticed this on one of the Apple support pages (my emphasis):
    Copying music to and keeping the iTunes Media folder organized
    You can select these options on the Advanced pane of iTunes preferences:
    "Keep iTunes Media folder organized." Learn more about how iTunes 9 and later organizes your media.
    "Copy files to iTunes Media folder when adding to library." Select this option to store all your media files in the iTunes Media folder. Since it's all in one location, you can easily transfer or back up your media. When you purchase or import media into iTunes from a CD, it's automatically added to your iTunes Media folder. If you add media to iTunes another way (choosing "Add to library" from the File menu or by dragging an MP3 file into iTunes), it might not be added to your iTunes Media folder.
    Well, why the heck not??

    I have posted so many issues to APPLE on the staggering lack of  basic functionality with itunes and each time they keep deleting it.
    Automatically Addd feature does not work consistently if the library is on NAS or a drive not on the same bok as the Mac, iMac or PC.
    iTuns will hang if you have the finder window open  and the recently added playlist open
    itunes will not add files automatically  if more than three phases of adding folders to the automatically add to itune folder is refreshed
    Once could even jump to the conclusion that the software testing and Quality Control in the iTunes development team had missed out whole chunks of tsting OR that the test designers wrote such basic test scripts which did not replicate real world useage.

  • Unable to install a zone: Copying 0 files to the zone.

    Hi forum users,
    I really hope someone has any idea what could be wrong here.
    First of all, the server is patched with security and recommended patches, except for 118344-13 -> R-- SunOS 5.10_x86: Fault Manager Patch which I will install on the next maintenance day. It already has 4 zones running without problem.
    However when I try to install a new zone now it always fails.
    # zoneadm -z blah install
    Preparing to install zone <blah>.
    Creating list of files to copy from the global zone.
    Copying <0> files to the zone.
    Initializing zone product registry.
    Determining zone package initialization order.
    ERROR: package <SUNWcsu> is not complete: skipping installation of package
    ERROR: package <SUNWcsr> is not complete: skipping installation of package
    ERROR: package <SUNWcsl> is not complete: skipping installation of package
    ERROR: package <SMCreadl> is not complete: skipping installation of package
    ERROR: cannot determine dependency ordered package list from package repository </var/sadm/pkg>
    ERROR: cannot generate dependency ordered list of packages from global zone </var/sadm/pkg>
    ERROR: failed to initialize packages from global zone </> to zone </zones/blah/root>
    ERROR: cannot copy and initialize packages from global zone to local zone <blah> path </zones/blah/root>
    ERROR: cannot create zone boot environment <blah>
    zoneadm: zone 'blah': '/usr/lib/lu/lucreatezone' failed with exit code 74.
    To me it seems obvious that the problem lies in the fact that it doesnt even copy a single file to the configured zone, therefor it can't install any packages and all the rest fails too. The big question of course is, why does it think it only needs to copy 0 files? Has anyone encountered such a problem before? I havent found anything yet on patches breaking zoneadm install but might have missed it.
    Does it looks like a HD corruption?Might be since the Sun Management Console agent does seem to freeze on that server too once in a while.

    All the packages are fine in the global zone, pkginfo -l tells me the packages are complete.
    I did try the truss wrap but it gives me so much info it is hard for me to figure out if something is wrong. The only error i think that returns often and that is not resolved is:
    ioctl(4, TCGETA, 0x080471E4) Err#25 ENOTTY
    ioctl(4, TCGETA, 0x08047294) Err#22 EINVAL
    The part where it seems to compile a list of files to copy however is very empty of truss entries:
    Preparing to install zone <gal2en-survey>.
    Creating list of files to copy from the global zone.
    Copying <0> files to the zone.
    Initializing zone product registry.
    Determining zone package initialization order.
    read(4, 0x0806DD3C, 5120) (sleeping...)
    ERROR: package <SUNWcsu> is not complete: skipping installation of package
    This issue is still unresolved for me. For now the only way to create a new zone on that server is to manually copy all files from another zone, editing the zonecfg entry and net config files for the zone, then i can boot and run it.

  • Need to copy .txt file from FTP server and downloaded on local server directory.

    I need to figure out a way to copy .txt file from ftp server in local server directory using sql jobs.

    Below links will help achieving it:
    https://www.virtualobjectives.com.au/sqlserver/ftp_scripts.htm
    http://www.mssqltips.com/sqlservertip/2884/sql-server-integration-services-ssis-ftp-task-for-data-exchange/

  • Copy a file from URL to local HDD

    Hi,
    I've got 2 problems:
    1. I'm an absolute beginner and an german-speaking user of this forum
    2. I want to copy a file from within a signed applet (with full access permissions) from a URL on the server to a local directory on the client. It works with .txt or .ini files, but not with .dll or .exe. The .exe file has only 1KB instead of the 5MB and contains only something like "-1". Help!!
    Here's what i made:
    URL updateurl = new URL(getCodeBase() + "testfile.exe");
    InputStream in = updateurl.openStream();
    FileOutputStream out = new FileOutputStream("C:\\temp\\testfile.exe");
    byte[] buf = new byte[4096];
    int len;
    while ((len = in.read(buf)) > 0)
         out.write(buf, 0, len);
    out.close();
    in.close();
    Thanks for any help!
    cmon42

    From looking at the code I can't see any blatant errors.
    The only thing I can think of, is: is your code wrapped by a try/catch block which you are ignoring?
    The reason I ask, is that maybe you are not downloading the file you intended in the first place. The reason I think this is because of the line:
    URL updateurl = new URL(getCodeBase() + "testfile.exe");Shoudn't there be a separator between getCodeBase() and testfile.exe? Only a guess, since getCodeBase may already return the separator.
    HTH,
    Manuel Amago.

  • How to copy/delete file

    hi,
    i need to come out a program, which can copy/delete file from unix directory A to directory B, on the application server.
    does any one have any idea how am i going to code the abap program for this?
    thanks

    > i need to come out a program, which can copy/delete file from unix directory A to directory B, on the application server.
    >
    i am assuming that your Application server is Unix.
    unixcommand cp is used to copy the a file from one directory to another.
    cp /dir/file1 /dir2/file2
    the above command will copy the file1 of dir1 to file2 of dir2.
    for delete use the command rm,
    rm /dir/fiel1
    the above command will remove the file1 from directory dir.
    REPORT ZUNIX line-size 400
                    no standard page heading.
    parameters : unixcom like   rlgrap-filename.  
    data: begin of tabl occurs 500,
            line(400),
          end of tabl.
    data: lines type i.
    start-of-selection.
      refresh tabl.
      call 'SYSTEM' id 'COMMAND' field unixcom
                    id 'TAB'     field tabl[].
    "if any error or any thing you get in the tabl
    "just check the tabl once after the finishing

  • Copy a file from hard disk to a jar

    Is there any way to copy a file from hard disk to a jar file?

    hajani wrote:
    No, I want to copy a file into an other jar file (like a zip or a rar file)
    Edited by: hajani on Dec 7, 2008 4:11 AMIf you really do mean 'jar' file an not 'zip' or 'rar' then you can use class java.util.jar.JarFile and write your own code. If you don't feel like writing a load of code then and you can guarantee that the 'jar' executable is going to be available then you could use Runtime.exec() or it's cousin ProcessBuilder. If you mean a 'zip' file then you could use class java.util.zip.ZipFile and write a load of code. If you mean a 'rar' file then you will either have to find a 'rar' class library or again use Runtime.exec().

  • Copying a file from Cd/Dvd to MacBookPro?!

    Hi,
    I have got a MacBook Pro 2.33 and when I try to copy a file from cd or dvd ( let's say a movie about 700Mb) it takes about 20 minutes!! and furher if I try to open an app. during the copy it jump for a long time in the dock and when finally the app. appears it works very very slow. It's normal such behavoir or I have got some problems with my Mac?
    Thanks

    That is not normal. It is a multithreading operating system. Sounds like either your hard drive is overfull, or your RAM might be bad, or the Spotlight index hasn't completed, or you have too many active widgets, the directory is damaged, a bad peripheral needs an updated driver, or if you migrated from a PowerPC Mac to an Intel Mac you used Migration Assistant. The latter is not recommended because old PowerPC drivers and plugins can slow down your system. This is how I'd migrate from PowerPC to Intel:
    http://discussions.apple.com/thread.jspa?threadID=435350&tstart=0
    Let us know which of these seems to be affecting you. If you need help isolating the particular cause, also please let us know which cause you want to isolate.

  • After copying a file from NTFS to HFS volume, file size changed when viewing in Windows

    Hi guys,
    I have a Mac Air running Mavericks on a HFS partition and Windows 7 on a BOOTCAMP NTFS partition. I have some files that I want to read/write from/to both systems. Since OS X can't write NTFS and Windows can't write HFS either, and I don't want to use any 3rd-party tools/drivers, I have to adopt a "stupid" way: in OS X, I copy those files from NTFS to its HFS partition, make changes, then switch to Windows and sync them back to NTFS.
    The problem is, after I copied a file from NTFS to HFS in OS X, it seemed ok. But when I switched to Windows, the very copied file in HFS partition had its size changed (bigger) although I didn't make any changes to it in OS X yet. This happens to almost every file I copied, text and binary. For those text files, I tried to open it with EditPlus in Windows and EditPlus reports the correct size on the status bar.
    How could this happen?

    I am not sure if this is what your seeing but...
    The same unaltered file on two different volumes might use different amounts of disk space. This is because a 'disk' is divided in to 'blocks' and a block (also historically known as a 'sector') is a certain minimum size. So if disk-1 has a block size of 512 bytes and disk-2 has a block size of 1024 bytes then a file containing just 10 bytes will use up twice as much space on disk-2 as disk-1 even though it is the exact same file.
    Beyond that, Macs can add additional information like Spotlight tags, labels, icons, etc. which make a file bigger. If you are modifying a file then presumably that also implies adding additional content e.g. for a Word document more text and this will make it bigger. Also depending on some programs are configured or designed 'deleting' text may only mark it as deleted and not really delete. This can apply to older versions of Word which has a 'Fast Save' feature, new versions have removed this and do a proper delete.
    You would have to give more details like what you are doing to the document, what kind of document, and what the two sizes are.
    Finally, there is one other potential difference, some systems and manufacturers use 1024 as a unit for measuring file and disk sizes, some use 1000. It will be the same number of bytes in each case but 1000 bytes in one case would exactly equal 1MB, and in the other it would be 0.9765MB.

Maybe you are looking for

  • Premiere Elements 11 Will not open

    I had this same problem with paid version of Premiere Elements 10 for over a year and it never got fixed. Yesterday 2/20/13, the new Premiere Elements 11 Trial was downloaded with the help of a senior Adobe tech, along with Photoshop Elements 11 and

  • Merging numbers documents into single PDF for emailing

    I have 23-50 numbers documents (invoices) that I want to send as one single PDF (to save time). When I select them all in Finder and open in Preview they are not full size and are rotated the wrong way. When I open them seperately in Numbers and cmd

  • Little cloud icon in my music library in ios7.

    Little cloud icon in my music library after downloading ios7. What am I actually doing when I click on the cloud?

  • OBI EE connection to Essbase

    Hi, we sucessfully created rpd file with connection pool to Essbase server, but we get error by creating requests Odbc driver returned an error (SQLExecDirectW). Error Details Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P State: HY000. Code: 10058. [NQODBC

  • Cant add jabber account to messages app

    Hi, When I try to add a new account to Messages the only option for an account is yahoo.  My other machines allow jabber, aim etc but the only option i get on this machine is yahoo. Perhaps the preferences have gone awal I have tried deleting them in