How to add/replace/correct narration in a Video Demo project?

I've recorder a Video Demo project in CP 6 and would like to correct existing narration. In particular, I'd like to add more detailed explanation at some places. Is there any practical workflow that could be used here?

A video stretching? How would that look? You can split a video in two clips, add a static image like a snapshot if you need to increase the duration of the video.
I will mostly do a temporary narration during the video capture so that the timing at least is correct. Later on I'll record the real narration and try to keep up to the same length of the temporary one. That is always the trouble with synchronising to a video instead of to the static slides that you get with Automatic capture. On Static slide you can move object to adapt to the narration.
Lilybiri

Similar Messages

  • How to add a time stamp to a video edited in Photoshop CC?

    Hello fine ppl of Adobe communities.
    I was wondering how can you add a time stamp to a video when edited in PS CC, is it possible at all? I dont have premier but I do have PS and LR.
    Appreciate any help.
    thanks

    If you use File > Place Embedded, you'll be able to resize and place (move, rotate, etc.) images as appropriate in your open document with the added bonus of having them added as Smart Objects. (Note that using Smart Objects can greatly increase the file size of your document. Just be aware.)
    File > Place Embedded > resize and place (hold down Shift to constrain proportion as you resize) > confirm by clicking the checkmark or "commit" icon.
    For layers that already exist, right-click the layer in the Layers panel > Convert to Smart Object.

  • How to add Weblogic 10.3 Thin-Client library to project?

    Dear All,
    Can anyone help me how to include Weblogic 10.3 Thin-Client library to project. I am wondering for the location of Weblogic 10.3 Thin-Client library, but unable to locate it.
    Thanks in advance.
    Best Regards
    Bilal

    Its done...
    Go to project properties -> libraries -> Add library -> Weblogic 10.3 Thin-Client.

  • How to add DRAM FIFO-128bi​t to the FPGA project?

    How do I add the DRAM FIFO - 128 Bit Memory Interface to a PXIe-796XR RIO module?
    Above project is from one of the example projects. I know how to add DRAM but not how to configure it as FIFO 128bit as above.
    Any guidance is appreciated.
    Solved!
    Go to Solution.

    I really have not found a way to add the DRAM 128bit fifo to the design. Adding normal DRAM and target specific FIFO's and host-target FIFO's is easy, but the special DRAM implemented as a giant FIFO I could not find how to add. And I have searched the documentation - but obviously missed the key point. I use labVIEW 2013. Any hints are appreciated.

  • How to add a LLB as a file to a project?

    Hello,
    I will add a LLB as a file to a project.
    If I add the LLB into the project explorer the LLB will be include as a folder and not as a file.
    I found the following description on the NI homepage:
    You also can add an LLB to a project as a file. If you add an LLB as a file, the VIs in the LLB do not appear in the Project Explorer window.
    Right-click the target or a folder under the target, select Add File from the shortcut menu, and use the file dialog box to navigate to the LLB you want to add.
    Select the open folder icon labeled VI with a single period to the right and click the Select button.
    But when I navigate to the LLB, I don't have an icon labeled VI.
    Have anybody an idea or can check this please?
    greetings
    Sascha

    So Sacha, you should probably add a vi inside the llb and then manually edit the .lvproj file..... (or wait until the not too distant future, is the not too distant past)
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • How to adjust the speed of a single video demo clip

    This seems like a very basic function of a video that I can't seem to figure out in Captivate 8:
    For an individual video demo inside of a project, how does one go about turning up the speed of that clip?
    To be clear, I am not referring to simply viewing the end product and speeding that up.

    Well, you could record a Video Demo using Captivate. Then publish that out as an MP4. Then you could edit the MP4 using Premiere Pro or Premiere Elements. Then you could render it back out and use it as a video in Captivate.
    Perhaps others have other approaches.
    You might also want to take a look at TechSmith Camtasia. I believe it has an editing capability to speed up a clip. Or just a portion of a clip if you choose to split it up.
    Cheers... Rick

  • How to add justification correctly?

    Hi Scripters,
    I am new in scripting in InDesign. In my XML Import I tried to add a justification to my different textranges.
    My Problem, I can't set 3 different justifications in 1 textframe. With the textpoint size and the color it works fine.
    If I set a justification, all textranges are left, leftJustified or right..
    My example how I tried to do it:
    preIndex = nTF.insertionPoints[-1].index;
    nTF.insertionPoints[-1].contents = XMLdata[i]['title'];
    endIndex = nTF.insertionPoints[-1].index;
    // Textbereich wählen und Formatierung zuweisen
    myRange = nTF.insertionPoints.itemByRange(preIndex,  endIndex);
    myRange.justification = Justification.leftAlign;
    myRange.pointSize = 12;
    nTF.insertionPoints[-1].contents = "\n";
    nTF.insertionPoints[-1].contents = "\n";
    preIndex = nTF.insertionPoints[-1].index;
    nTF.insertionPoints[-1].contents = XMLdata[i]['description']; // Inhalt hinter die letzte Position des bereits vorhandenen Textframes setzen
    endIndex = nTF.insertionPoints[-1].index;
    //nTF.selectTextStyleRange.justification = Justification.LEFT_JUSTIFIED;
    // Textbereich wählen und Formatierung zuweisen
    myRange = nTF.insertionPoints.itemByRange(preIndex,  endIndex);
    myRange.justification = Justification.leftJustified;
    myRange.pointSize = 8;
    nTF.insertionPoints[-1].contents = "\n";
    preIndex = nTF.insertionPoints[-1].index;
    nTF.insertionPoints[-1].contents = XMLdata[x]['ean-number']; // Inhalt hinter die letzte Position des bereits vorhandenen Textframes setzen
    endIndex = nTF.insertionPoints[-1].index;
    //nTF.textStyleRanges[-1].justification = Justification.RIGHT_ALIGN;
    // Textbereich wählen und Formatierung zuweisen
    myRange = nTF.insertionPoints.itemByRange(preIndex,  endIndex);
    myRange.justification = Justification.rightAlign;
    myRange.pointSize = 8;
    best regards
    mischa

    You can set text size and color because those are Character attributes. Justification is a Paragraph attribute -- it makes sense that tou cannot set both left and right justification in a single paragraph.
    I fast-read your code (which is a bit unreadable due to Jive), and at a glance seems you are using "\n" to "separate" paragraphs with. Is that correct? If so, well, don't. It inserts a soft line break instead of a paragraph return (which, you might want to know, is "\r").

  • Can't figure out how to add bars to reformat 16:9 video to fit a 4:3 frame

    Hi all, I'm a long-time user of iMovie 5, and a professional Avid video editor. On my home computer, however, I have some serious issues using the "dumbed down" version of iMovie '08 which, unfortunately, it seems I must use if I want to avoid purchasing new software, and don't feel like trucking my personal work to the office.
    Usability issues aside, I'm at a total loss as to how to reformat my imported video clips. At the moment I have a .dv file which is exported from FCP in a 16:9 format. I want to take this into iMovie '08, format it to fit a 4:3 window, add it to a bunch of other clips, and export a finished 4:3 movie to then put on DVD.
    Importing is fine, editing is meh but works (sorry, I'm a snob), and exporting works fine, but I can't for the life of me figure out how to put a reformat on the video. The goal is to have black bars on the top and bottom of the video image, squeezing the anamorphic 16:9 video down so that people don't look vertically stretched in a 4:3 window.
    What I do NOT want to do is crop out any of the video footage. The goal is to keep all of the video, and just add the black to the top and bottom in order to make it look, well, normal. For the life of me, I can't figure it out. it looks like this would be something that the Crop / Fit tool does, but that won't let me extend the fit outside of the frame of the video, nor will it let me put a 16:9 fit inside of the 4:3 viewing window (I only have a 4:3 option when in 4:3 mode, and only have a 16:9 option when in 16:9 mode).
    Thank you very much for your insight.
    PS: Just as an aside, why on earth did apple move iMovie '08 away from timeline-based editing? The old iMovie versions were quite powerful editing suites in their own right - even with limited video and audio layers. The '08 version seems to just hate users who want to do anything remotely close to frame-specific edits.

    I guess I've got to add the flags back in somehow? The weird thing is that the movie is the correct aspect ratio in iTunes and Quicktime, just not iMovie '08.
    iTunes, QT Player, and previous versions of iMovie all relied on the "Current Display Size" setting to set the aspect ratio. (I.e., you can modify this setting and change the aspect ratio by merely changing the display size in QT Pro and re-saving the file for these apps.) Unfortunate, iMovie '08 looks for the flag for the main display/export, and, if Apple hasn't changed things, uses the "current display size" to set the aspect ratio of the thumbnails... Weird.
    How would I add those flags back in? Can I just open in quicktime and save a new copy? Or am I going to have to contact the original source of the material and have him export it again (with different settings? And what settings would those be? He's coming from FCP).
    If the content is of exceptional quality, you could try re-exporting it in MPEG Streamclip using the "Export to DV..." option. This will re-flag the file with the aspect ratio you select in the export window. Also, be advised that performing destructive edits in iMovie '08 that forces the data to be re-written to new containers will lose the flag in the process unless Apple has made some recent changes to avoid this.

  • How to add a symbol to the beginning of a project?

    I have a pretty intricate Animate composition.  I want to add a simple Symbol/Animation at the beginning.  I've tried inserting time and it did nothing.  Basically, I just want to shift everything over a couple of frames.  I thought of turning the balance of the composition into a symbol, but a lot of the interactivity is based on Labels on the stage's main timeline, and it breaks when I try to convert to a symbol.  I'm not sure what I'm missing here?  Any help would be truly appreciated!
    Thanks!
    Jon

    Hiya Res,
    I will definitely give it another shot.  I tried that, but I think I might've given up too easily .  I'll let you know how it works out. 
    Thanks!

  • How to add a new library to an existing java project

    Hi ,
    i just moved to writing java applications in jedit after working in eclipse for a while , in eclipse it was easy to add a new library jusr rightclick and add but how do i do the same when working with a text editor of jedit style and what do i need to change in order of javac.exe and java.exe to work properly , i tried google but i got no comprehensive article about it i'd appreciate a link or even better a simple explanation .
    thanks in advance .

    you just need to include it on your classpath

  • How to add new class to existing DC (Web Dynpro project)

    Hi,
    How can I add new class to an existing DC (Web Dynpro project)?
    I tried adding it using File - New - Other - Java - Class, but after a build of the DC the new class (and its contents    ) was completely removed.
    Then I created a new DC (java project) and created a new class in that DC. This went fine, but I got into problems because of circular referencing between the new & the old DC, so no build was possible.
    This can't be difficult, does somebody knows how to do it?
    My temporary solution is to add the classdefinition to an exisiting .java file. Very ugly.
    Thanks,
    Jeroen

    Hi Jeroen,
    where did you create the class? If the *.java file is placed in the src/packages folder it should not be deleted by a build. (I suspect you created it in the gen_wdp folder?)
    Regards,
    Marc

  • How to add a background music pause during video

    If I have my video imported, and have added a song for the background music, how do I add a pause to the audio but keep the movie going. There is two pieces of audio, the song and the video audio. I want to pause the background music so that the video audio plays (someone is talking) and then the music comes back in after the talking is done.
    Thanks a ton!

    Have you looked at Document -> Add watermarks & background... ?
    If you want to do it automatically, it's possible to set this up using the batch processing command, same thing, the command is "Add watermarks & background".
    It's probably possible using JavaScript as well, but, there's really no need if the "add watermarks and background" works for you.

  • How to add a picture partly into a video

    Hello,.
    So, I'm currently making a 3 minute news film at school, and am trying to add a picture into a video,
    so at the beginning of the news, I want to add a picture either right up or left up corner of the video
    something like this...
    http://i1320.photobucket.com/albums/u538/jerichoi224/080312_kbs1tv_zps84cba8f9.jpg
    so,,, how do i insert a picture like that into a video?
    and, additionally, is there a way to make it look like when transitioning the screen, the picture would magnify and fill up the screen.and the film begins
    so in the example, the bread/snack picture would enlarge, fillup the screen and another video would resume.
    thank you.

    Think of AE as Photoshop, work with layers. scale and position the layer (photo), add a feathered mask. This is so basic that you should probably start here.

  • How can I replace the audio in my iMovie 11 project with one I import frome elsewhere?

    In the old imovie you can separate out the audio track, mute it, delete, replace it with one you prefer -- and easily make it line-up with the video, for example of a concert performance. Anyone know how to (even if by work-around) do the same with iMovie 11??

    Do the following:
    Download the app My Contacts Backup to your phone.  Us the app to back up the contacts on your phone as a vCard attachment to an email that you send to yourself. 
    Delete your iCloud contacts by going to iCloud.com from your computer, log into your iCloud account and open Contacts, click on All Contacts on the left, to the right click on any single contact to select it, click on the Actions (gear shaped) icon at the bottom left and choose Select All, then press the Delete key on your keyboard.  This will delete the contacts from your iPad as well.
    Open the My Contacts Backup email on your iPad and tap the attachment to import the contacts from your phone to your iPad, and to iCloud.  Go to icloud.com and confirm that they appear there as well.

  • How to add record voice over for a video file

    I have a video file (wmv) already prepared, and all I would like to now do is record a voice over for this file using Soundbooth CS4.  My hunch is that I need to import the video into a multi-track file, and then I expect I'll export the multitrack file back to the WMV when I'm done.  The problem is that when I hit the record button, I'm expecting to see the video playing but I don't.
    Is there a way to add a voice-over / narration to an exisiting video file (in this case a video file without an audio track at all)

    When you are recording, you are creating a new audio track and not playing the video, so you won't see it advance.
    Best bet is to open the video in WMP, and record your audio in SB while it plays, to get the timing right, then open the video in SB and past the recording into it.
    I'm not sure, but I believe the reason you can't play the vid and record at the same time is in case someone is recording new audio for a clip that has audio in it already, the old audio would play at the same time the recording is taking place and would screw it all up, so it either records one or plays the other, but not both at once.

Maybe you are looking for

  • VBA code to connect Essbase from Excel

    Hi All, I need VBA code to connect & retrive the data from Essbase trough Excel sheet ....Please advise... Regards, Prabhas

  • Multiple directories in rtmp

    I have hard time getting this URL to work on FMS 3.0.1 and latest Flash player. rtmp://localhost/vod/flv:Catalog/userA/sample.flv If I move the sample.flv to the Catalog directory, it works fine (rtmp://localhost/vod/flv:Catalog/sample.flv). I've tri

  • BADI not working with FAPP - Final Appraisal column

    I am trying to add a custom BADI to FAPP - Final Appraisal column. But I am getting an error saying 'Value Determination XXX not permitted for column FAPP'. I have copied the standard BADI AVERAGE and trying to incorporate that. Any ideas?

  • Exception at BPEL console

    Hi, At BPEL console suddenly I am coming across following error for all the deployed BPEL processes who were working fine in past. <Faulthttp://schemas.xmlsoap.org/soap/envelope/> <faultcode>env:Server</faultcode> <faultstring>java.lang.NullPointerEx

  • Message E R7 005 cannot be processed in plugin mode HTTP

    Hi All, I test my BSP page with transaction : BPS_WB u2013 Customizing Web Interface Builder. I press u2018display previewu2019 to check layout and it displays well. If i have not change any data, it can save. But i has error when i change or input d