How to replace the audio track of a videofile without re-coding the video

hey,
i did an animation in after effects which took about 4 hrs to render. now the sound designer did some changes and i have to replace the audio track. is that possible (in ae, premiere or ame) without encoding the video track again?
thx
u

hello,
DDVideo QuickTime video converter gain can help you.it only copys and normalises the audio for your mov video without encoding again.
Operation Steps:
1.Run the programe.
2.Add you MOV video,
3.Select MOV format in ProfileSettings,
4.There is a "Video Codec" in Video parameter,Please select "  copy  "
5,Please tick "VolumeGain" box and adjust output target video volume From 75DB to 105DB
6.Select output files directory,
7.click "convert " button to convert video.
The programe also can convert your video to other video format.you need to change Video codec to realize encoding again.
url:http://daydayvideo.com/quicktime-video-converter.htm
Hope it helps you.

Similar Messages

  • How to play multiple audio tracks simultaneously?

    Hi there,
    I am having problem with playing multiple audio tracks. I want to play 2 or more audio tracks at exact time (without delay) - is it possible? how can it be done?

    So, essentially, you're trying to take a recording of say, a singer and a guitar player, and end up with the singer in one file and the guitar in the other. Got it.
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html]
    That sample will merge multiple input files into a single file. Because you want to play the files together rather than save them, just take the sample and strip out all of the DataSink stuff, and add the following line right after the Processor "outputProcessor" is realized...
    outputProcessor.setContentDescriptor(null);
    So, it'll make the following revision to the code:
         // Create the output processor
         ProcessorModel outputPM = new MyPMOut(merger);
         try {
             outputProcessor = Manager.createRealizedProcessor(outputPM);
                        outputProcessor.setContentDescriptor(null);
             outputDataSource = outputProcessor.getDataOutput();
         } catch (Exception exc) {
             System.err.println("Failed to create output processor: " + exc);
             System.exit(-1);
         }That'll make the outputProcessor play the file, as if it was a Player object. You won't have any visual controls, but if you need visual controls, then don't do that, and just create a Player object to play the outputDataSource.

  • How to replace the root tag in ABAP Mapping

    how to replace the root tag with the certain string in ABAP Mapping
    just like
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
         <name>Lawrence</name>
    </root>
    into
    <?xml version="1.0" encoding="UTF-8"?>
    <myRootElement>
         <name>Lawrence</name>
    </myRootElement>
    i don't want to implement it in message mapping
    please give me the sample code
    thanks in advance

    Use below code
    odocument = ixmlfactory->create_document( ).
    msgtype = odocument->create_simple_element(
    name = 'myRootElement'
    parent = odocument ).
    Thanks
    Praveen

  • Qosmio G50-10J: How to replace the Optical Disc Drive (ODD)?

    Hello there,
    the optical drive of my Qosmio G 50 is not working properly anymore, it reads only some movie-DVDs, but sadly no videogameDVDs at all, so I cannot instal any games.
    The warranty has already expired too. So I wanted to ask if it is possible to change the drive myself, if it is then how should I do it, and if by doing it would the laptop be in
    serious risk of getting damaged?
    I would be very thankful for every tip and every help you guys can give me!!!
    Best regards,
    a.z.

    Hi
    In different cases the ODD replacement is not very tricky.
    If you want you can check this forum category.
    Here you can find some videos how to replace the ODD on different notebook models:
    http://forums.computers.toshiba-europe.com/forums/forum.jspa?forumID=115
    Here is also a nice Youtube channel which provides the instructions how to replace the ODD:
    http://www.youtube.com/user/toshibaeuropesupport
    But maybe the ODD laser lens is dirty. In my case I could solve similar issue cleaning the laser lens using a cotton-wool tip and alcohol.
    But be careful doing this!

  • Satallite A100: How to replace the keycaps?

    Is there a manual on how to replace the keycaps after they come off?
    My Satallite A100, one year old, lost two keycaps a few weeks ago, and I am unable to replace them, although I have all the (little) parts. It got even worse when some more came loose recently when my little son peeled some off, using the room created by the already missing keycaps.
    Thanks!

    Hello Mike
    Reading your posting I can not understand exactly what is wrong with your keyboard but removing and putting in place keycaps (plastic with written symbol) is not problematic. You must just put it right in place and gently press it down. You will hear click and the keycap will be in the place again.
    Under this keycap is placed small plastic mechanism. It contains two small plastic parts. If they are removed from the bottom you can put them inside again. To see how it looks like remove keycap from any other key and see how is it placed.
    I have done the same now and with a little bit patience you can put it in the right position again.

  • How to replace the certificate of Cisco 2106 wireless LAN controller for CAPWAP ?

    I have interested in CAPWAP feature and I download the open capwap project to make Access Controller (AC) and Wireless Terminal Point (WTP). I had built the AC which used PC and WTP which used Atheros AP. The CAPWAP feature work well when I enabled the CAPWAP that used my own AC  and WTP. When I got the Cisco 2106 wireless LAN controller (Cisco WLC), I configured the Cisco WLC to instead my own AC but I got the authorize fail in Cisco WLC side. It seem the Cisco WLC could not recognize the CAPWAP message which sent form my own WTP. I think this issue just need to synchronize the certificate between Cisco WLC and WTP.So I need to replace the Cisco WLC's certificate manually. Does anyone know how to replace the certificate manually with Cisco WLC ?
    Best Regards,
    Alan

    Unfortunately this Support Community is for Cisco Small Business & Small Business Pro product offerings.  The WLC2106 is a traditional Cisco product.  You can find this type of support on the Cisco NetPro Forum for all traditional Cisco products.
    Best Regards,
    Glenn

  • How to replace the char values into numeric in my string?

    Hi Friends,
    I would like to Replace the Charecter values with numeric value in my string.
    Exp : first in my string I am having the value like this : 'ABCD1234' ( may be any char and num values ), and I want too get it by '99991234'.
    I mean How to replace the char values into numeric in my string?
    Thanks,
    Sridhar

    Hi Sridhar,
    I would like to Replace the Charecter values with numeric value in my string.
    Exp : first in my string I am having the value like this : 'ABCD1234' ( may be any char and num values ), and I want too get it by '99991234'.
    So, if i understand you correctly, you want to replace all characters in a string with 9 as in the above example, irrespective of position of the character, if so try with the below code.
    DATA: l_str TYPE string.
    l_str = 'ASKHSIUDNSBDKJSDH124312431243124saasdfsf'.
    REPLACE ALL OCCURRENCES OF REGEX '\D' IN l_str WITH '9'.
    IF sy-subrc EQ 0.
      WRITE: l_str. "Result will be 9999999999999999912431243124312499999999
    ENDIF.
    Regards,
    Chen
    Edited by: Chen K V on Jun 13, 2011 12:36 PM

  • Hp 7 voice tab screen broken unfortunately. tab is under warrenty.. how to replace the screen

    hp 7 voice tab screen broken unfortunately. tab is under warrenty.. how to replace the screen 

    Hp india have bad service ever. I hv order three notebooks ' hp 15-ac026tx' before five days for firm. Distributior open the boxes. But at the time of installation not single driver supporting to 2gb graphics card. As distributor made with Hp support they replied the engineer will come to ur place soon. But still no one has come. And im going to cancel this order and will prefer other compony.

  • Good morning , I bought my mac pro 13 ' in 2011 (OX 10.10) , in March 2014 I had to replace the video card , fortunately under warranty. Today, after only eight months starting with the same problems ! I read online that some mac products in 2011 wer

    Good morning , I bought my mac pro 13 ' in 2011 (OX 10.10) , in March 2014 I had to replace the video card , fortunately under warranty.
    Today, after only eight months starting with the same problems !
    I read online that some mac products in 2011 were put on the market defective , you can get a warranty extension or even a replacement mac?

    dubem747 wrote:
    It looks like your phone has a some virus, use your computer to scan and remove it.
    not possible for it to have a virus and a PC would not know how to scan the OS as its protected
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • How can i use audio through hdmi on mac book pro i have video no audio version10.6.8

    how can i use audio through hdmi on mac book pro i have video no audio version 10.6.8 in audio it just has internal speaker options

    Hello,
    Open Audio Midi Setup in Applications>Utilities, see the input & output options & KHz setting there.

  • How to sync the video to my iPad using Lightroom Mobile

    HI,
    I wonder how to sync the video to my iPad using Lightroom Mobile. At the moment seems those video files have not been uploaded. I got all my still images downloaded to the iPad except video files.
    Hope someone here can help. I am trying to use Lightroom to replace iPhoto. This is the only thing bothering me.
    Thanks.

    Hi Soup2105,
    Please refer to below article.
    Lightroom mobile FAQ
    Navigate to how to sync option.
    For getting pictures from Iphoto to Lightroom you can refer to below link.
    http://helpx.adobe.com/lightroom/help/import-iphoto.html
    Thanks

  • How to delete the videos in Ipod and Itunes ?

    Could you let me know how to delete the videos in Ipod application in my Iphone 4 to release more space ?

    If you don't want the video on your iphone then uncheck the video in itunes and sync your phone. If you want it removed from both the phone and itunes delete it from itunes and sync your phone.

  • I have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    i have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • How to use the video in on 9500XT

    Hey I was wondering if there is any way to find out how to use the video in on my 9500XT
    I read on another forum but that didn't help me, so I throught this would be alot better beause MSI makes the card  
    Could anyone help me or give me links to find out how?
    Thanks!  

    Nobody knows?
    Come on someone must know  

  • Can I replace the video from a previously published vidcast?

    In an effort to increase the quality (but not change the length or content), I'd like to re-post a video. However, this will change the file size.
    If I replace the video file, do I need to change that item's XML metadata (specifically, the attribute 'length="77928200"')? If I replace the video and people download it before the updated XML is reflected on iTunes Store, will it break the download or mess anything up, or is the filesize data just "FYI" info?
    My Vidcast URL:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=294706812
    My FEED:
    http://www.realartusa.com/vidcast/xml/RA_cast-itunes.xml
    Thanks!
    andy nick

    I don't know the answer to this, and Apple's Podcast Tech Specs page doesn't elaborate: but my guess would be that it won't make any difference - a download once started should continue until the actual file end is reached. All you can do is try.

Maybe you are looking for