Save sound fixes not saved in FCP

I'm fixing some audio by sending my audio portion in the FCP time to soundtrack pro, after I fixed my pops and noises, I saved the audio and go back to FCP, for some reason FCP doesn't see the fixed sound, it still has the original corrupt sound. Has anyone had this problem. I thought once you send and fix from FCP using STP, once you save the film, quit STP, FCP will immediately see the improved audio.
any guidance will be very helpful.
thanks

are you sending as a multitrack project or a single clip? If multitrack you have to export the mix and re-import in FCP. If single clip it's all in how you tell STP to modify the file. Read the section in the manual about saving of the single files for an explanation.

Similar Messages

  • QuickTime Pro 7.1 sound edits not saving

    In QuickTime Pro 7.1 when I adjust the volume level in the movie Properties dialog, then save the file, the edits are not saved with the file when I reopen it and play it. The volume level reverts back to the way it was before.
    Is there something I am doing wrong?
    TIA
    G5   Mac OS X (10.3.9)  

    If you're the adventurous type and the missing functionality of QT 7 is a real burden then you can do the following:
    1. download QT 6.5.1 from here:
    http://www.apple.com/support/downloads/quicktime651.html
    do NOT install it.
    2. download Pacifist here:
    http://www.charlessoft.com/
    Use Pacifist to open the "QuickTime651.pkg"
    (What we do next is extract only the QuickTime 6.5.1 Player from the package.)
    From the "Application" folder in the open Pacifist window, choose "QuickTime Player.app"
    In the Pacifist icon menu choose "Extract To..." and choose your Desktop.
    * Important: Rename the "QuickTime Player" on your Desktop to "QuickTime Player 6.5.1"
    Put it into your Applications folder and use as you have in the past.
    Any changes you make to the video or sound can now be saved as before if you use this player to open your movies.
    The QuickTime 7 player will still function as it did before.
    G5 1.8 DP (Rev. A)   Mac OS X (10.4.6)   ATI X800 XT, 4GB RAM, 20" Cinema Display, M-Audio Revolution 5.1

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Custom program to save partners.. not saving Partners.

    Saving Partners.
    Hi Guys,
    I am working on Solution Manager - and I am trying to save Business Partners in Solution Manager.
    I am using the function module - CRM_ORDER_MAINTAIN and then CRM_ORDER_SAVE to confirm the changes. This gives no errors - but does not save the Partners.
    I also tried the program (se38 program) CRM_ORDER_MAINTAIN but even that is not able to save the partners.
    I check CRMD_ORDER - no partners are updated.
    As far as I remember, this function module used to work and I was able to save the partners, but after upgrade it stopped saving partners - but I may be wrong over here.
    Has anyone seen code to save partners ?? Can you help me with what all parameters I need to pass to the function module to save the partners?
    I also tried - BAPI_LEAD_CREATEMULTI, that saves everything except the partners - and this is only for creation - I also need to change. (actually this FM also first creates and then calls - CRM_ORDER_MAINTAIN).
    I also tried - CRMXIF_ORDER_SAVE and failed.
    Please help.
    Navdeep

    Hi,
    i think you have to call function module CRM_ORDER_SAVE after this.
    CRM_ORDER_SAVE only works if an change event has been raised, and i think here could be the problem.
    Please try the following:
    After your CRM_ORDER_MAINTAIN call the following modules and COMMIT afterwards:
      include: crm_mode_con,
               crm_object_kinds_con,
               crm_events_con,
               crm_object_names_con.
        call function 'CRM_EVENT_PUBLISH_OW'
          exporting
            iv_obj_name = gc_object_name-action
            iv_guid_hi  = lv_guid
            iv_kind_hi  = gc_object_kind-orderadm_h
            iv_event    = gc_event-save.
      call function 'CRM_ORDER_SAVE'
        exporting
          it_objects_to_save   = lt_guids
          iv_no_bdoc_send      = abap_true
        importing
          et_saved_objects     = lt_saved_objects
          et_exception         = lt_exception
          et_objects_not_saved = lt_not_saved
        changing
          cv_log_handle        = l_loghndl
        exceptions
          document_not_saved   = 1
          others               = 2.
    COMMIT WORK.
    Hope this helps,
    Christoph

  • Interactive Report - Save Default Filter not Saving

    In Apex 3.2 I have an Interactive report were a Filter I applied won't save to the report.
    I applied the Filter and saved it as the default report for all users, but when I leave the page and come back the filter its gone.
    The same application on different pages has interactive report with filters applied to the default report and they all work fine, it's just this one report that the filter won't stay.
    First time I've every had this issue.
    Any ideas?
    The filter is pretty simply, I have a column that has codes of D, E, G,... and I apply the filter for CODE != D.

    Hi,
    I've just been trying the "in the last" option and had no problems for any number that I entered. Are you just entering 1 into the box? What error do you get?
    I've loaded the page with Debug switched on, and get:
    select
           null as apxws_row_pk,
           "DATE_ID",
           "ATD_DATE",
           "CHECK",
           count(*) over () as apxws_row_cnt
    from (
    select  *  from (
    select
    apex_item.checkbox(1, DATE_ID) "CHECK",
    "DATE_ID",
    "ATD_DATE"
    from "#OWNER#"."ATD_DATES"
    )  r
    where ("ATD_DATE" between systimestamp - (1 * :APXWS_EXPR_1) and systimestamp)
    ) r where rownum <= to_number(:APXWS_MAX_ROW_CNT):APXWS_EXPR_1 would contain the value 1 as that is what I've entered for the filter. My report's sql statement is just the innermost nested select statement, the rest has been added by the IR functionality and the filter.
    Andy

  • PSE not saving edited files to the organiser

    For no apparent reason my PSE 11 application seems to have developed an annoying glitch whereby part way through an editing process it stops doing as requested in the "Save" options, by not saving edited files as version sets of the original file in the Organiser. The files are saved OK to My Pictures and I then get advised that a file is available to import and I have to import each one, stack it with the original, and put the edited file on top. This is driving me nuts as I have about 1000 photos to edit. What is causing this problem? My only thoughts are that I have c.30000 picture files in the Organiser (but this hasn't caused any problems in adding new files)  and that the problem seems to have arisen since I started editing files directly from within an Album.
    Help

    It's the first time I see that bug mentionned in PSE11, but it's an acknowledged bug in PSE12.
    See that post with links for the workarounds:
    http://forums.adobe.com/thread/1328850

  • FCP 6.0.2 - Capture Successful - Clips not saved! Help!

    I'm running FCP 6.0.2 on OS X 10.4.11
    I have a Sony HDR-FX1 camera and do most of my filming in SD DV.
    I'm trying to capture footage on several tapes (about an hour per tape) using the Log and Capture method. The camera is plugged into my front firewire port. I've logged the tapes (as 1 hour clips) and have tried doing a batch capture several times.
    Here's the problem:
    The clip is captured for the entire hour and I'm presented with the message that the capture was successful. I proceed to click "Finish" and my clip stills shows as "offline" in the final cut pro browser. Also, when I look in my FCP "Capture Scratch" folder, the respective project folder is completely empty.
    In other words, FCP is not saving my captured clips for some reason.
    I'm happy to answer any other questions you may have and am willing to try anything at this point!
    Thanks in advance for your help.

    Yeah - oddly enough, I don't run into this problem with shorter clips - just captured one that was 30 minutes long. But I really don't want to split these long clips up - it's easier to sync up the multiple angles when I'm dealing with clips that are all the same length.
    You would think that if FCP encountered a problem while capturing these clips, it would give me some sort of warning - but no, it says successfully captured and then just doesn't save the darn clips! So frustrating to sit here for an hour watching it capture and have nothing to show for it. It's failed 8 times so far (that's 8 hours I'll never get back!)

  • My movies and music videos won't show up on screen, I can hear the sound but not see the video how do I fix this?

    My movies and music videos won't show up on my computer screen, I can hear the sound but not see the video how do I fix this? I'm not sure what to do as far as turning my purchased movie into DVD goes either. I just want to put the movie onto a DVD disc but my itunes won't even show that I have a blank disc in the drive, I'm not sure what is wrong or how to fix this, any help at all would be much appreciated.

    Hi @anthony7722 ,
    Thank you for your query, I will do my best to help!
    I grasp that you uninstalled the Intel graphic driver and the catalyst control.  You reinstalled the Intel driver and now you can view and hear videos on the Internet but you are unable to set the resolution as high as previously.
    When I checked the specifications for your notebook I see that you have switchable graphics.
    Here are two links that I believe will help.
    Overview of Switchable Graphics or Dual GPUs
    Switchable Graphics on Notebooks Configured with Intel and ATI GPUs
    Here is a link to HP Pavilion dv7-6150eb Entertainment Notebook PC Drivers
    Please try this process.
    1. Download the chipset driver, and both graphic drivers and save them  but do not install them yet
    2, Delete the chipset driver and install the updated one.
    3. restart your notebook
    4.Delete the Intel driver and install the updated one
    5. restart your notebook
    6. Delete the AMD driver and install the updated driver. 
    You should now have a Catalyst Control Center.
    This should now allow you to use the higher graphic card which should support the higher resolution.
    I hope this helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • I'm trying to correct a mistake in my signature block. I save it but when I go back and look, it's not saved. Help!

    I made a spelling error in my signature block. I corrected this and hit save. When I got out and went back in, it wasn't saved. How do I fix this?
    == This happened ==
    Every time Firefox opened
    == June 7, 2010

    I copied a "pretty font, then I pasted it on to my signature block (since i can not get a pretty font from my signature block). But when I hit "SAVE", the signal said " Saving error.." and it would not save what I just pasted on!!! please help.

  • [svn:fx-trunk] 12962: Fix for ASDoc not saving event type for [Bindable] metadata tag

    Revision: 12962
    Revision: 12962
    Author:   [email protected]
    Date:     2009-12-15 10:32:23 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Fix for ASDoc not saving event type for metadata tag
    QE notes: None.
    Doc notes: None
    Bugs: SDK-24706
    Reviewed By:Corey
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24706
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: NVidia [HDA NVidia], device 3: NVIDIA HDMI [NVIDIA HDMI]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    Which correspondents fine with the
    device "hw:0,3"
    in my mpd.conf alsa section.
    Also sound worked fine withh this config before I started installing ffmpeg-svn and alikes
    hokasch:
    I tried changing the mixer to "Master" but that did not change much.

  • Iphoto 11 , How to save changes to photos, not saving -/ snow leopard

    Hi , after much ado then discovering the recent "fix" for Iphoto 11 I started using it today. I uploaded new photos , edited them and quickly discovered that Iphoto was NOT saving any of the changes I had made.There  is no longer a  "Done" button so I went back to again check the few  photos I had adjusted , Iphoto only saved changes for one out of 10 of  the photos I had adjusted.
    Is there a "save changes"  function I am missing here? Anyone else experiencing this problem?

    How are you exporting? If you select the photo and export (file menu ==> export) with kind = JPEG or current the edited version will be exported
    if that is not happening try renewing your preference file -
    A good general step for strange issues is to renew the iPhoto preference file - quit iPhoto and go to "your user name" ==> library ==> preferences ==> com.apple.iPhoto.plist and trash it - launch iPhoto which creates a fresh new default preference file and reset any personal preferences you have changed and if you have moved the iPhoto library repoint to it. This may help
    This does not affect your photos or any database information (keywords, faces, places, ratings, etc) in any way - they are stored in the iPhoto library - the iPhoto preference file simply controls how iPhoto works - which is why renewing it is a good first step.
    LN 

  • HT4753 would number automatically save an .xlsx file I opened and modified but not saved? I've lost a file with many edits...

    would number automatically save an .xlsx file I opened and modified but not saved? I've lost a file with many edits...

    kearly - thanks a million for posting both the question & the reply! I just unchecked that little box by accident, & couldn't figure out for the life of me how to fix it. Thanks again!!

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • How to recover a file downloaded but not saved in firefox.(when downloading gave the open option instead of save)

    Version: Firefox4Beta
    OS: Windows7
    Problem:
    I was downloading a large RAR file from the internet.
    While downloading the file i didn't selected the save option instead i gave open with(winrar) option. I have some other rar files to combine with this file. So after the completion of this partial downloaded rar file is not saved in my system.How can i recover it.
    Thanks n regards,
    Ponnukumar.S

    hi,
    Thanks for ur reply.
    But i already searched the windows and looked for that file.. But its not anywhere to be found. See first while downloading i gave the open option instead of save. So after the completion of the download the file opened automatically in winRAR. I tried to extract that file then it gave me some error. After that i closed the winrar and searched for that file in windows with search option but its not seen anywhere.
    Thanks n regards,
    S.Ponnukumar

  • Before when I scanned a photo, it would automatically save and ask to scan another photo. Now, the photo is not saving and it doesn't ask to scan again. Help?

    Before when I scanned a photo, it would automatically save and ask to scan another photo. Now, the photo is not saving and it doesn't ask to scan again. Help?

    What Scanner and scanware are you using....?
    Check out > Mac Basics: Using a scanner
    I only use Image Capture and it always sends my photos to wherever I tell it to.

Maybe you are looking for

  • How do I sync files on Mac mini and MacBook pro

    I want to sync files between my Mac Mini and my MacBook Pro. Is there a way to do this? Primarily, I want to access photos in my LightRoom Catalog from both platforms. Thanks for any help you can provide.

  • How to reduce EAR file size of ADF 11 g app.

    Hi I developed the ADF 11 g Aplication using jdeveloper tool.i deployed it on WLS10.3 successfully and able to run it also. Through wizards in jdeveloper i created the EAR file.while packing the EAR file ,if i included the required libraries in WAR m

  • Albums vs Folders

    New user to PSE11. Is it recommended that ALL photos be in albums or is the idea that photos in albums are a subset of the photos in folders? With all the sort and search functionality, I don't understand the benefit of albums. I name my image folder

  • Missing Artwork after upgrade to version 10

    Before upgrading to itunes 10 all my songs had artwork. Now the artwork is missing. Many albums will have the artwork for the first song and then its missing from the other songs in the same album. Does anyone else have this problem?

  • Iphone - UILabel with round corners

    Hi, I have a UIView and on top of that UIImageView. I'm displaying background image in UIImageView. I need to display a label on top of the UIImageView. I would like my label to appear semi transparent and also having rounded corners. Could anyone he