Files wont convert with sidecar information

Hello, I have been trying to convert camera raw files to jpgs with updated color correction, exposure, etc working from Bridge to CS3 using batch processing. The application runs the script with sharpening but will not apply the updated camera raw information. The jpgs looks the same as the raw files without any correction. This process was working fine up till now but for some reason it won't covert anymore. Any help would be greatly appreciated. Thanks, David

You must purchase the Quicktime MPG-2 Playback Component from Apple ($20 US) for MPEG Streamclip be able to convert mpg-2 encoded content.
Programs like DVDxDV and VisualHub run in a demo mode and don't require that purchase.
Since i know i did this before without having to pay to download anything, i wonder what i am doing wrong or has it changed in the last few months?
Nothing has changed. Perhaps you used the demo mode of one of the other apps I mentioned.
F Shippey

Similar Messages

  • Motion files wont overlay with my fcp file

    I am having trouble getting my motion file to integrate with my fcp file.
    I would like to import it without the background so that it has a transparent background.
    I have read a few others comments on this but i still cant figure it out...
    please explain this to me as you would a 4 year old...so i can get it:)
    thanks
    mac book pro   Mac OS X (10.4.8)  

    hey man,
    thanks for helping me out...i am new to this program...
    i have a fcp file and i want to place an element of motion over it...i would like to be able to have the element to be transparent with no background.
    i have browsed through project properties and didn't find anything there that would help(that i know of)
    i have tried to adjust the "color" to "alpha overlay"(found in the upper right hand corner next to "view")
    i have tried to just import the motion project into fcp...
    so as you can see i have no idea what i am doing:)

  • Spool to PDF - Problems with downloading PDF file when converting with job

    Hi all!
    I've got a problem. I've got a program that writes a smartform into the spool. After that, I am using the function modules RSTS_GET_ATTRIBUTES and CONVERT_OTFSPOOLJOB_2_PDF to convert it into PDF. I retrieve a internal table with the binary content for the PDF file. Now i can download the file to the desktop by using the method cl_gui_frontend_services=>gui_download.
    But there is a problem: when the spool excesses 99 pages, the function module CONVERT_OTFSPOOLJOB_2_PDF asks the user via popup if the PDF should be created in background. If the user commits, the internal tables that should contain the binary PDF data is emtpy. A background job writes the binary data into the spool. The user has got an empty file that will be generated by cl_gui_frontend_services=>gui_download.
    So, is it possible to suppress the popup to create the PDF allways online? Or how can I write the PDF file if there will be create any spool id in background? You'll find my current code below.
    * Prüfen ob es die übergebene Spoolnummer überhaupt gibt
      SELECT SINGLE * FROM tsp01 INTO ls_tsp01 WHERE rqident = id_spoolid.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
    * TemSe-Objekte speichern sequentielle Daten. Ein TemSe-Objekt kann aus
    * mehreren Teilen bestehen. Dieser FB ermittelt die wichtigsten Attribute
    * eines TemSe-Objekts. Falls das Objekt aus mehreren Teilen besteht, werden
    * die Attribute entsprechend zusammengefaßt.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          client        = ls_tsp01-rqclient
          name          = ls_tsp01-rqo1name
          part          = 1
        IMPORTING
          objtype       = ld_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
      IF ld_objtype(3) = 'OTF'.
        lf_is_otf = 'X'.
      ELSE.
        lf_is_otf = ' '.
      ENDIF.
      IF ( lf_is_otf = 'X' ).
    *   Konvertiere OTF-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
    *        pdf_destination          = 'T'
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ELSE.
    *   Konvertiere ABAP-Liste-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ENDIF.
      WHILE ( lf_file_ok = '' ).
    *   Die in der Tabelle lt_pdf enthaltenen Binärdaten werden nun in eine
    *   Datei geschrieben. Da alle übergebenen Tickets in die gleiche Datei
    *   geschrieben werden, kann der im Speicher gehaltente Protokolleintrag
    *   gelesen werden
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize              = ld_numbytes
            filename                  = cd_filename
            filetype                  = 'BIN'
    *    append                    = SPACE
    *    write_field_separator     = SPACE
    *    header                    = '00'
    *    trunc_trailing_blanks     = SPACE
    *    write_lf                  = 'X'
    *    col_select                = SPACE
    *    col_select_mask           = SPACE
    *    dat_mode                  = SPACE
          confirm_overwrite         = 'X'
    *    no_auth_check             = SPACE
    *    codepage                  = SPACE
    *    ignore_cerr               = ABAP_TRUE
    *    replacement               = '#'
    *    write_bom                 = SPACE
    *    trunc_trailing_blanks_eol = 'X'
    *    wk1_n_format              = SPACE
    *    wk1_n_size                = SPACE
    *    wk1_t_format              = SPACE
    *    wk1_t_size                = SPACE
    *  IMPORTING
    *    filelength                =
          CHANGING
            data_tab                  = lt_pdf
          EXCEPTIONS
            file_write_error          = 1
            no_batch                  = 2
            gui_refuse_filetransfer   = 3
            invalid_type              = 4
            no_authority              = 5
            unknown_error             = 6
            header_not_allowed        = 7
            separator_not_allowed     = 8
            filesize_not_allowed      = 9
            header_too_long           = 10
            dp_error_create           = 11
            dp_error_send             = 12
            dp_error_write            = 13
            unknown_dp_error          = 14
            access_denied             = 15
            dp_out_of_memory          = 16
            disk_full                 = 17
            dp_timeout                = 18
            file_not_found            = 19
            dataprovider_exception    = 20
            control_flush_error       = 21
            not_supported_by_gui      = 22
            error_no_gui              = 23
            OTHERS                    = 24.

    Creating a PDF file with over 99 pages through SAP seems rather unreasonable to me. What are you printing - Encyclopedia Britannica? For cripes sake... Have you thought about creating more than one spool request or using something completely different? Why do you have to do this through spool? You can get Smartform output directly into PDF, there are a lot of example out there.
    The only solution that comes to mind is rather brutal - create a copy of the function module and get rid of the popup. Although it just might time out after that...

  • Files Wont Convert . What am i doing wrong?

    I was successful a few months ago converting them but now it not working. I dont know what im doing different so i will list each step.
    MOD file. I open it in MPEG Streamclip and click on convert to MPEG and i have also tried converting it to MPEG with MP2 Audio. Have then followed both options by clicking on export to DV but then it comes up "You must install MPEG -2 playback component before trying to export MPEG2 files".
    Since i know i did this before without having to pay to download anything, i wonder what i am doing wrong or has it changed in the last few months?

    You must purchase the Quicktime MPG-2 Playback Component from Apple ($20 US) for MPEG Streamclip be able to convert mpg-2 encoded content.
    Programs like DVDxDV and VisualHub run in a demo mode and don't require that purchase.
    Since i know i did this before without having to pay to download anything, i wonder what i am doing wrong or has it changed in the last few months?
    Nothing has changed. Perhaps you used the demo mode of one of the other apps I mentioned.
    F Shippey

  • Saving .dng files in raw with sidecar

    I loaded raw images as .dng -- edited the photos -- and am trying to export as "File Settings / Format: Original" (with the attendant side car XMP).  The export folder still contains .dng files and I do not understand what else must be done. I'm a iMac user.  Thanks for the help.
    Chuck N+13

    Chuck,
    One other method to extract the XMP from the DNG would be the following:
    In LR, Save Metadata to File on all your DNGs
    Make your DNG Files read only
    Open them in ACR (e.g. using PS)
    Make a trival change to the image and then reverse it (e.g. change WB from what it is to something else, then back)
    Click Done in ACR
    ACR will try to write the XMP data into the DNG, but because it's read only, it will write a sidecar XMP for it.
    Step 4 might not be necessary to achieve a write-back of the XMP.
    Of course, you still need to get your RAW from somewhere ...
    Beat Gossweiler
    Switzerland
    Message was edited by: b_gossweiler

  • ITunes wont update with new information

    So a brief story to see if anyone knows how to help me out.
    I have had itunes match for a while now and had no problems apart from the typical issues when uploading. About 2 weeks ago i made a backup of my C: Drive which contain's my itunes library (XML and ITL files) and Artwork.
    All my music/app/books ect are on a separate hard drive.
    A week after backing up my C drive, i decided to clean up my itunes music. All I did was change some album artists names from VA to Various Artists. iTunes did this fine and moved all the albums to the folder called Various Artists on my separate hard drive where the music is stored. Also this updated itunes match, as at work on my MacBook they appear as Various Artists - i.e. the new album artist name i gave those albums.
    A week after this windows broke, so I had to format my C: hard drive. The separate hard drive where the itunes music/apps/books etc was fine.
    Formatted my pc and restored the backup of all the XML and artwork to my C drive. I open up itunes and the albums have the old names (i expected this as the backup was prior to me changing the names) and when i try to play a song on any of those albums it says it can not find it (this is also normal as the albums were renamed, but do exist in the itunes folder called Various Artists).
    I thought oh ok, itunes match will update all my xml library files with the data it has stored in the cloud. But it doesnt. It does not touch those albums.
    I know for a fact that in the cloud the albums are named Various Artists as i can see them on any other apple device (iphone, ipad and mac itunes).
    Is there a way to force itunes match to update your l;ocal library album names or artists. Is there an easy way?

    el_gallego87 wrote:
    Is there a way to force itunes match to update your l;ocal library album names or artists. Is there an easy way?
    iTunes Match doesn't really work that way. You'll need to locate the files for iTunes (either on the external or internal HDD), then change the ID3 tags yourself.

  • IDCS file wont open with CS2.  says "plug-ins arent updated?!"

    so, i recently installed CS2 on my computer, and when i try to open a particular file that was made with CS, i get an error message that says:
    "the document uses one or more plug-ins which are not currently available on your system. do you want to open anyway?"
    it also lists:
    LILO.indesignPlugin
    CellStyles.rpln.indesignplugin
    if i say yes, open anyway, it says it cant. and it doesnt.
    booooo.
    how can i fix this?
    -a

    It was probably created in CS3. One of the features used in CS3 is cell styles (surprise!)
    Have the person who created the file export an INX (InDesign Interchange file). You can open it if you have the latest version of CS2. (However, the cell styles won't be cell styles anymore.)

  • Local files wont sync with my mobile

    So I was trying to add my AC/DC songs, that I have purchased time ago, to spotify since they don't have AC/DC, I created a playlist with my local files on the desktop app, then synced the playlist with my android device. I can see the playlist on my mobile but when I want to make it available offline it never download any tracks, they just stay in a gray color and I can't even play them. How can I fix this?

    Hello MDOGBD, try to access your anti-virus settings. There should be an option to disable it permanently or temporarily. Most anti-virus softwares have a small icon in your Windows tray and you should be able to right click for options to disable it (that is if you are running Windows). Your question was not very clear. You should be able to play local files straight away on your computer. For ease of understanding, the computer with your local songs shall be called computer A. If you are looking to sync those songs to another computer (computer B) then unfortunately that doesn't work. You would have to have a copy of those songs on computer A transferred to computer B and listed under the local files section to play them.
    If the problem is to do with syncing the local songs on computer A to your phone, try the solutions listed by the other posters on this page. If that doesn't help try restarting your router and your phone.
    Hope this helps.

  • AVI files wont read with Mavericks installed

    How do it set up the new quicktime 10.7 as the default setting? everytime I open a video it kicks me back to quicktime 10.3 version even though i downloaded the ne 10.7 version.

    There is no 10.7 version of QuickTime.You probably mean QuickTime Player version 7 (Utilities folder).
    Right click on one of your AVI's and open the Get Info window. From this window you can change the default "Open with" app to QuickTime Player 7 and  then click the "Change all" button.

  • I have recently updated my CC programs to the latest version and now all of my files wont open by default into their respective programs, only if I open the program and go to file open and open the file from there. How can I fix this?

    I have recently updated my CC programs to the latest version (CC2014) and now all of my files wont open by default into their respective programs, only if I open the program and go to file>open and open the file from there. How can I fix this?
    I have tried 'Open with' and the version of the program now installed on my computer isn't even suggested as an option and when I browse for it, the file wont open with it anyway

    On Windows (don't know about Mac), the latest version will always take over the file association, and become the default for indd files. It's impossible to change it.
    But there is a plugin for ID that makes this possible. Never tried it myself.
    https://www.rorohiko.com/wordpress/downloads/lightning-brain-soxy/

  • Export DNG file with copyright information

    When importing my Canon CR2 RAW files, I convert them to DNG files into a folder with that days date, and automatically add my copyright information on import.
    If there are any photos I want to process further I'll export them to a working folder, still as a DNG file. In the export dialogue box I can't seem to be able to include all metadata information - including the copyright information.
    Will Lightroom allow me to do this? Or when exporting to my working folder, do I need to convert these files to TIFF?
    Cheers.

    When you export to DNG you don't have the option to select which metadata to export (the dialog box is grayed-out, and it defaults to All Metadata). you just export every single metadata you already have in you master file.

  • I'm considering buying CC LR/PS package. My camera is Sony a7 - raw ARW. I've been editing using PSE10 and ver 8.7 of the external Adobe DNG converter. Will I be able to open the DNG files in LR with the edits preserved? Will I be able to open the PSD fil

    I'm considering buying CC LR/PS package. My camera is Sony a7 - raw ARW. I've been editing using PSE10 and ver 8.7 of the external Adobe DNG converter. Will I be able to open the DNG files in LR with the edits preserved? Will I be able to open the PSD files in LR with the edits preserved? Any import/catalog etc issues between PSE10 and LR?

    Lightroom has no problem reading DNG files. Whether the edits you have done to the DNGs you have originally edited in Photoshop Elements 10 I'm not sure. ACR edits made to DNGs are saved in the DNG file itself, as apposed to a XMP sidecar file, so LR should see those edits. At the worst you will get an exclamation mark in the upper right hand corner of the imported DNGs and clicking on that exclamation mark you will get a dialog box asking you to either import settings from disk or overwrite settings. you would select import settings from disk.

  • Just bought an ipod touch and it wont sync with itunes. Tried resetting sync history but doesnt work, plus when i try to access itunes preferences it freezes for ages and creates loads of distnoted.exe files?????

    Just bought an ipod touch and it wont sync with itunes. Tried resetting sync history but doesnt work, plus when i try to access itunes preferences it freezes for ages and creates loads of distnoted.exe files?????

    Just realised when reading other peoples problems that it is not actually letting me reset sync history???

  • How did my pdf files get converted from 'open with Adobe Reader' to open with Adobe Acobat'?  And if I have a ''free'' Acrobat account why does it not open?  When I do click on the account it ask me to pay $89.99.  I never wanted Acrobat.  How can I get -

    How did my stored files get converted from 'open with Adobe READER' to 'open with Adobe ACROBAT'? How can I get them re-set to open with 'Adobe Reader'?
    Please reply to my e-mail:   [email protected]

    It sounds as if you downloaded Adobe Acrobat Pro. If you did, uninstall it. Then repair Adobe Reader.
    The free Acrobat account has no connection to any of this.

  • Having a problem converting a PDF file to Words with Adobe's conversion program.

    Having a problem converting a PDF file to Words with Adobe's conversion program.

    See https://forums.adobe.com/docs/DOC-2412
    If you need more help, please ask in https://forums.adobe.com/community/acrobatdotcom/

Maybe you are looking for