How to record a simple sidebar video as in Adobe Presenter 7

In Adobe Presenter 9, how to record a video with my webcam to put as a sidebar video for one slide ?
In Presenter 7 we could do that easily.  Now with the new video editer we can make great videos and capture the screen.  But that's not what need...
How to do a simple sidebar video without capturing the screen...
Look at the point 4 on this website: http://help.adobe.com/en_US/Presenter/7.0/WS56318F3C-65A7-477b-8CAA-2CBF0902BA5B.html
3-...Capture video...
4-...then select... ...sidebar video to record video for the Presenter image area.
It was easy in Presenter 7 !!!!!!!!!!!
Thanks

When you use the video recording feature in Presenter 8+, it does record a stand alone WMV of your webcam. While the workflow isn't as clean as before, it can be inserted back in just as a sidebar video, without the background screen capture. Here is how you can do it:
Use the Presenter Video Creator to record your video. Disregard that your screen is being captured, you won't use it.
After you record your video, Save your project. Don't publish it, as the published output is useless to you.
Back in Presenter, choose to Insert Video.
Browse to your webcam capture (My Documents > My Adobe Presenter Video Projects > {What ever you named the capture} > mt). Should be named something like presenter_video1.wmv
Presenter will convert it to FLV, you can select the quality and location, slide or sidebar, as in previous versions of Presenter.
If desired, you can use a 3rd part video conversion tool to convert the WMV video, but that may not be necessary.

Similar Messages

  • How to record a time-limited video with Adobe AIR for iOS

    I am trying to record a time-limited video with Adobe AIR for iOS.
    For example, I want to implement the following function. Start a one-minute timer before launching CameraUI to record video. When the timeout event happens after one minute, stop recording video, close the CameraUI view and obtain the video data so far.
      I have several questions related to that.
      1. How to stop recording video from outside the CameraUI view(in this case, from the timeout event handler) and then close the CemeraUI view? As far as I know, to close the CameraUI view, the only way is to press the [Use Video] button or the [Cancel] button from inside the CameraUI view. Is it possible to close it from outside?
      2. Even if the first problem mentioned above is solved, then how can I get the video data so far(in this case, the video data before the timeout). I know that normally we can get a MediaPromise object from MediaEvent parameter of the  complete handler, and read the video data from the MediaPromise object. But obviously in this case, we can not access the MediaPromise object just because the complete handler itself will not be executed since the [Use Video] button is not pressed.
      3. Is it possible to add a stopwatch to show possible remaining recording time when CameraUI view is open? It seems that the CameraUI automatically uses the full screen of iOS device(in my case, iPad) and there is no extra space to show the stopwatch.
      Are there any solutions or workarounds about the three problem above? I really appreciate it if anyone has any idea about this. Thanks in advance.

    You'd have more control by using the Camera object, showing the camera on a video object inside a Sprite, and capturing that. Then you could put whatever graphics alongside it on the stage.. I've used FlashyWrappers in a test to capture the video to the library.  It took some work, but the test worked well...
    Flash/AIR record videos of your apps and games: Rainbow Creatures

  • How to add a locally stored video file to a presentation

    Hi all ,
    I want to add a locally stored video file to a presentation .What is the url that i need to use..
    Ur help is much appreciated
    Thanks

    The recommended procedure is to create the presentation on the DMM (upload the video to the DMM) then create a deployment package using the presentation created on the DMM. Once you deploy it to the DMP, the DMM will FTP the video along with presentation files to the DMP which will contain the links to play the video that will be stored locally on the DMP.
    You may want to review the following thread to see how to trigger the local presentation to play and how to update it later:
    https://supportforums.cisco.com/message/3289668
    Regards,
    Fabio Bergamo
    Cisco TAC

  • How do I put a youtube video on a keynote presentation

    How do I convert a youtube video into a MP4 format so I can use it in part of  my Keynote presentation?  Is there a Mac app for that?
    iMac  OSX 10.9.4
    Keynote 6.2
    2.4 GHz Intel core2 Duo
    4GB 667 MHz DDR2 SDRAM

    Note: Keynote questions should be directed to the Keynote forum in the future, as Keynote doesn't run on Classic OSes.
    Keynote for Mac

  • How to Record Actual "Events" (Not Video)

    In my Application, there are a number of things going on, chat, slides etc... Is it possible to record when a "Event" happens for playback later? For example every time a slide changes, it's recorded to some kind of file as a record to be "replayed" later?

    try the FlexMonkey
    http://code.google.com/p/flexmonkey/
    regards
    Leonardo França
    http://www.leonardofranca.com

  • How to Record a Interview with Multi tracks using Adobe Audition CC

    Hi,
    I would like to record a Skype Interview call using Adobe Audition CC.
    I am able to get Track 1 to reconize my voice, but I can't figure out how to get Track 2 to pick up the other person's voice I am interviewing through the Skype Call. I am using Skype's call recording as a back up, however, I hear the call quality is better if it goes straight into Adutiton.
    I am sure it has something to do with the input and output, but just ahve no idea where to start.
    Any help would be greatly apprecaited!
    Thank you!!!!

    For product specific questions you may do better in the specific product forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right to open the drop down list and scroll
    http://forums.adobe.com/community/audition

  • How to do a simple or basic actionscript on Adobe Flash CS4? I am just having problems

    I am doing my simple portfolio on Adobe Flash CS4. However when I am already looking just for the basic action scripting from the tutorial I can't determine which is the most accurate for the buttons.
    Here's my sample below
    the texts that were listed below are my buttons such as  ABOUT, PROFILE, PRINT ADS, MAGAZINE, LOGO, PRINT, ILLUSTRATION, and DESIGN CONCEPT
    I've already convert it into symbol as BUTTON and now I am ready to put a basic action script to function and transfer into another scene.
    Example I want to function the ILLUSTRATION and PRINT button into Illustration and Print scene how would I do the action script about it?
    Here's the example of next scenes that could be clicked from the homepage
    This is the ILLUSTRATION scene
    This is the PRINT scene
    Please help me on how to do the action scripting by using the gotoAndPlay or anything else to function my portfolio. Thank you

    Give each of your buttons an instance name via the Properties panel.  As an example fr coding them, let's say you named the button "about_btn" for the scene named "about" that you want it to go to.  Then to have that button make your file go to the about scene, you would add the following code into a frame of the timeline where that button is (in a separate actions layer preferably).  Select the frame and in the Actions panel write...
    about_btn.onRelease = function(){
         gotoAndStop("about", 1);
    If you wanted it to play instead of stop at frame 1 of the about scene, then you would use gotoAndPlay(...) instead of gotoAndStop(...).  If you intended to go to a frame other than 1, then it is best to use frame labels and specify the label instead of the frame number.
    Just a word of warning, if you haven't gotten too far with the design yet, you should back away from using scenes and just build all your sections into the first scene as sections of the timeline and/or movieclips.  Combining scenes with navigation can be problematic... they just don't play right.  Scenes are more useful for animations that do not have navigation.
    When you use just the one scene, all your gotoAndStop/Play commands only need to specify the frame... as in gotoAndStop(1);

  • Video Issues in Adobe Presenter 9

    Video issues - I have inserted a 3 minute video in a Presenter 9  file and it plays fine when previewing but only 6 seconds when published. Plays 6 seconds and then buffers.  I have tried inserting  different formats and still get the same results.  Anyone else have this issue or ideas on how to resolve?

    Hi there,
    I got a solution from the Adobe Captivate technical team.
    As an attempt to resolve your issue
    Uncheck the option “Accelerate 3D graphics” under VM Settings by going to VM >> Settings >> Display>> 3D graphics
    Once done please try capturing and hopefully this must resolve your issue
    I did this and it worked, yeah. However, it is still incredibly frustrating using VMWare, when I am recording using Presenter it keeps freezing and I have to shut the entire system down. Guess I'll try the Partition!!!
    Thanks again

  • Size of sidebar video

    When placing a sidebar video in an Adobe Presenter 7 project, the video filled the entire sidebar space.  Now using Adobe Presenter 8, the same video file fills only about 2/3's of the sidebar video space.  Does anyone know how get the video to fill the entire sidebar
    space?
    Jim

    @rbalinsky
    You are looking at the live video quality settings. When uploading a FLV video to a share pod, there is not resizing or modification to the video. Just keep in mind that the pod itself may not be the same size as your video. Just make the pod larger and your video should scale to fit the pod.
    Generally speaking, for best results I encode my FLV videos to
    FLV
    H.263
    720X480
    800 Kbps
    But you can go to higher quality settings if needed. It really all comes down to bandwidth required to deliver the media and screen real estate for the media to be played on.
    I would recomend that you don't screen share your video (the desktop is fine), as screen sharing runs at 3-5 FPS (generally speaking), and doesn't deliver audio, so you will get a bad video experience when using screen sharing.

  • Mouse problem in Adobe Presenter Video Creator

    I have Adobe Presenter 9.0.2 build 173, 64-bit and I seem to have a strange thing going on in Adobe Presenter Video Creator when I use it to do screen recording to demonstrate software.
    If I allow it to change my screen resolution as recommended by the application - 'change display Resolution during recording (Recommended)' - the mouse click occurrences recorded in the video occur a small distance away from where I actually clicked the mouse. So say I'm demonstrating the Ribbon in Microsoft Word 2013. If I click on the 'Home' tab on the ribbon, the video makes it look like I'm clicking on the 'Insert' tab just to the right of it.
    However, if I uncheck the box  'change display Resolution during recording (Recommended)', the moue clicks in the recorded video are in exactly the correct positions. I would be happy to record in this mode but the trouble is the fonts and pixels are not as clear when I record in this way with the display resolution box unchecked as when I record with the box checked.
    I'd like to know how to let Adobe Presenter Video Creator record at the recommended display resolution and have mouse clicks recorded correctly in the correct locations.
    Any ideas anyone? Thank you.
    Peter
    (N Wales, UK)

    Problem SOLVED!
    On a hunch, I searched for DPI via the search function in the Windows 8 charms bar and opened the item 'make text and other items larger or smaller'. Under the heading 'Change the size of all items', I found that the slider was set exactly halfway between 'Smaller' and 'Larger' and below this, there was a checkbox titled 'Let me choose the scaling level for all my displays' which was unchecked. I put a check mark in the box and changed the scaling from the existing 'Medium - 125%' to 'Smaller - 100%'. Windows told me I had to reboot the PC to make the changes take effect. On rebooting, my desktop icons were smaller than before, confirmation that the change of DPI had taken effect.
    I then made a video test with Adobe Presenter Video Creator with the 'Recording Preferences' setting 'change display resolution during Recording (recommended)' checked and to my satisfaction, ouse clicks no longer appear offset any more. And video quality in the published video looks great.
    I'm happy!
    Peter
    (N Wales, UK)

  • Adobe Presenter 10 crashes when clicking record

    I am using windows 8.1 and have tried the 32 and 64 bit versions of Office 365 and Presenter 10. Since presenter detects the version of Office you have its always using the right one but i still get crash.
    Every time i load it and hit record i get the error message.
    "Adobe Presenter has encountered an unexpected problem while working with this presentation blah blah blah"  This happens with everything i try to try to record, even new presentations.
    I have also completely reinstalled my entire OS and all of the drivers to ensure its not some i loaded.  I have removed my webcam software completely to ensure its not my video camera as well.
    Ive spent hours on the phone with tech support and quite honestly they are terrible.  They have me go through the stupidest exercises to find the problem every time i call and its still not working.
    The last guy i talked to suggested i use another computer which is absurd to even suggest because that would mean i have to buy another copy of Office since its only good for 1 computer and 1 Tablet, let along the fact that i need to record on my best machine now some laptop.
    Windows 8.1
    Office 365
    Presenter 10
    Intel i5 - 4670k
    NVidia 760gtx Latest Drivers
    Realtek Audio
    GIGABYTE GA-Z87X-UD4H LGA 1150 Intel Z87

    After HOURS on the phone with Adobe people and them being completely useless i finally figure out why i am getting crashes when hitting record.
    Presenter 10 doesnt work with Multi Monitor Setups (at least some of them)
    Im not sure if anyone else has multi monitors and uses Presenter successfully but that was why mine crashes.
    This amazes me quite honestly...Powerpoint by nature is designed to support 2 screens...1 for the presentation and 1 for the controls...for Presenter 10 to not support such a basic thing is absurd.
    Come on Adobe you have been through 10 versions of Presenter and you cant get this right?
    This is like removing the start bar from Windows!!!

  • Video playback issue for Adobe Presenter 9 when publishing to Adobe Connect Pro 7

    Hello!
    I am having an issue with video playback for Adobe Presenter 9. When I preview the presentation on my computer there are no issues with any of the MP4 videos that I have loaded into my presentations. However, when I publish the presentation to Adobe Connect and access the URL the videos are either delayed or do not appear at all.  We are using our own Adobe server which we purchased in 2008, along with Adobe Connect Pro 7. We recently updated our Adobe Presenter software to version 9. Is there an incompatibility issue between Adobe Presenter 9 and our current Adobe Server/current version of Adobe Connect? Or do I need to do something different in Adobe Presenter when importing the videos?  Note: I have tried FLV videos and had the same issue.
    We are trying to launch of series of webinars (each webinar has between 15-42 slides), which was the whole purpose of updating our Adobe Presenter and Adobe Captivate software....hopefully we can resolve this video issue.
    Thanks!
    Dana

    Connect 7 didn't support MP4 video content, as I recall. Another issue is that Connect rooms are using Action Script 2 (AS2) while Presenter 9 uses AS3, and the two code languages don't play well together. You don't mention if you are using the meeting application to display the presentation, but it is worth mentioning. If the presentations are stand alone, then the AS3 issue should be non-existent, but the MP4 support may be.
    Is there a reason you haven't updated the Connect software to Connect 9 (or at least Connect 8.1 where the Connect application became AS3 as a whole and supported MP4 content)?

  • How can I record narration with no video or beyond the end of my video in iMovie?

    I have a question about recording narration in iMovie.
    I wrote a script to read as the narration for a movie I'm making. My thought was I could record the narration first, then add video to match the spoken words.
    I've done this before in Sony Vegas on my PC and it worked out well, better than trying to speak to what was going on in the video after I record the video.
    Unfortunately, if I try to record narration in iMovie without any video being there yet, it won't record. It appears I need to put a video clip on the timeline first.
    If I put a short clip in and try to record narration beyond the end of it, iMovie quits recording at the end of the video clip.
    So I went to quicktime and recorded my narration there and have 10 audio files (since I just don't seem to be able to read this whole script without making mistakes).
    I then tried to add all 10 to my movie and I think it made me add a video clip first, but after I did, iMovie overlayed all 10 audio files on top of each other.
    If I try to drag them over one at a time, I still can't get them to go sequentially unless I add more video to my movie.
    There must be a way to add audio files or create narration without having to create a video file longer than your audio first.  Isn't there?
    I just can't seem to find a way to get the audio files layed out one after another without more video.  Very frustrating.
    At this point, I really want to know how to add audio files beyond the end of my video since I have them all recorded.
    But I'd also like to know how to record narration beyond the end of the video too for future projects.
    Thanks!
    Brad

    You could insert a bunch of placeholders in the timeline before doing the voiceover.
    You can find a range of placeholders (they are actually templates used in iMovie Trailers) in the Maps, Backgrounds & Animatics browser. This is the last browser at the end of the centre toolbar, after the Titles and Transitions browsers. Click on it and scroll down to see all the animatics (aka placholders or templates). Drag a number of these into your project timeline - as many as you think you need to cover your audio.
    When you've finished the voiceover, drag photos directly onto the animatics and select Replace from the pop-up menu. Adjust the timing by using the Inspector (double-click a photo to open the Inspector, then change the duration).
    John
    EDIT: Sorry, beaten by Bengt (again)!
    Message was edited by: John Cogdell

  • How do I remove an unopenable video file from my sidebar?

    How do I remove an unopenable video file from my sidebar?

    Found the answer in more like this. Thanks Barney!

  • How to record from the video in or S-video Ports on Qosmio G40?

    Can anyone tell me how to record from the video in or S-video ports, because i've tried the Ulead DVD factory program and the only capture device it could see was the webcam, and it did capture from it
    After that i've downloaded the update file that was provided by the support website
    The devices that the program could see are the TV tuner and the webcam (which it couldn't access anymore for some reason)
    After that i've downloaded a newer update which simply is the same as the last update and seems that someone in the support website directed the link of the new update which they don't have to the file of the previous update which doesn't really do anything.

    Hi
    There are 2 s-video ports; s-video out port is not designed to capture the signals from any external source. The name of this port says everything; its an OUT port!
    The s-video-in port must be placed at the right side of the notebook. Dont mix the both ports. But note; this port receives only the video signals. To hear the sounds, use a video cable to connect the sound terminals of the audio device and your computer.
    Red: sound right channel
    White: sound left channel
    The Ulead DVD Movie factory can be used to capture this signal.

Maybe you are looking for

  • Bootable RAID0 C: Drive on Neo2-Possible?

    I have been working for several days trying to set up a bootable RAID0 partition that also has the C: drive letter.  The problem is that WinXP insists on assigning the C: drive letter to the IDE drive, and assigns the D: drive letter to the RAID0 Arr

  • Pc not detecting webcam after downloading software

    I used to use a Creative Webcam Instant for the past 3 years. I unistalled it and bought the Creative Webcam Live Model #VF0050 & installed the software and now when I go to use it I get a message saying "NO SUPPORTED CREATIVE CAMERA DETECTED...PLEAS

  • ASCII characters to Character ( Unicode Conversion)

    In a non unicode system,i see logic where they are replacing any value from '00' to '1F'  with space in a variable of type X. In a unicode system,how this can be done since type x is no more valid. I am planning to convert variable to type c, but if

  • How to initialize it again

    Hello, I am facing the following problem. In the Program i have many class files. One such file is MainVariable. It contains many STATIC variable whoes initial value=0. But during the execution different classes change the values of these static vari

  • Download images from flicker using RSS....

    Hello, I am trying to download images from my flicker account to flex builder. When i search online i got so many API which can do this but i do in different way I want to download images using RSS feed. I want to download RSS (XML) feed which contai