Help with adding video effects.

Okay, so I am very new with Adobe Premiere Pro CS3, and decided to start working with video effects.
So far I can add an effect onto a video clip that I dragged down from the source monitor, but that applies the effect to the whole video track. I want it to start and end at a certain point.
I have read the Adobe Help Viewer on effects many times over and over, but still, I cannot get it to work.
I have set in and out put points in my Timeline, and went into the effects controls and peaked around, but have had no success at all with getting my effect to start and end at a certain point.
Can anyone help me out a little bit? I'm sure you are all Pro's at this, haha.

You will also find links to many
free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
Cheers
Eddie
PremiereProPedia   (
RSS feed)
- Over 300 frequently answered questions
- Over 250 free tutorials
- Maintained by editors like
you
Forum FAQ

Similar Messages

  • HELP! Adding video effects

    Alright, so I am new to Macs, I just got my first for Christmas. It's the newest model Macbook. I'm using iMovie 08, and for some reason I just can't figure out how to add effects. I've watched the tutorial video numerous times, and it says "it's so easy, just double click on the video" blah blah blah. In the tutorial video it shows a box pop up and there you can select "add effect" or something of the sort. Now, when I double click my videos in the project area, it just plays the video starting where I double clicked. I thought I was following the tutorial to a T, but I suppose I'm wrong. Please help!!

    The effects are in iMovie 09, which has not been released yet. It will be released in stores in a week or two.

  • Need help with adding video to itunes

    i have an ipad 1 that i put 2 videos on to teach CPR. got a new ipad. not only will i tunes not transfer the video it will not let me add it to the library to put it onto the new ipad. and help would be appreciated

    Is iTunes crashing when you try to add video or is it just not adding them?  If it's crashing I found that selecting the video in a folder and then right clicking (PC) then selecting Open With, iTunes, then iTunes will start to play the video but also adds it to the Movies section.  I've been having problems with iTunes crashing and found this to be the easiest way around it, obviously not the best choice if you have lots of videos.

  • Help with adding video to my website

    I have encoded the quicktime video into flash and i am trying
    to set it up in my dreamweaver html page, and it is not showing
    up.....please help, getting very tired of trying.... : (

    This is asked often, a search of the forum would have
    revealed plenty of
    answers... here are some:
    http://tinyurl.com/2nktma
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    "skavaresazadeh" <[email protected]> wrote
    in message
    news:f67oh8$gjb$[email protected]..
    >I have encoded the quicktime video into flash and i am
    trying to set it up
    >in my dreamweaver html page, and it is not showing
    up.....please help,
    >getting very tired of trying.... : (

  • I'm new and don't get it yet. Please help with adding video to timeline.

    Please give me direction with this.
    I  created 5 swfs (simple, short animations) The swfs are named "movie1," "movie2," and so on. I want to import all 5 movie clips and thread them  together so that they play one after the other inside the timeline of a new Flash  Document. I am hoping to have "movie 1" play, stop,  have "movie 2" play, stop and so on until the 5th "movie plays then  stops (no looping necessary). It will be played on a Mac laptop and not online.
    I've been fiddling with timeline actions for 2  days and can't figure how to lead one movie to the other. I've been using  Action Script 2 so far.
    What I've done is create 5 layers (1 for each clip)
    "movie1" is on layer 1, frame 1
    "movie2" is on layer 2, frame 2
    "movie3" is on layer 3, frame 3
    "movie4" is on layer 4, frame 4
    "movie5" is on layer 5, frame 5
    Is this workable?
    Thanksk all.
    Al Naclerio

    if you have swfs (and not movieclips), that probably won't work:   no actionscript in those swfs will work.  so, if you have any actionscript those swfs you'll need to "load" the swfs.

  • Help with adding image onclick

    Hey everyone,
    I am making a simple game in AS3 and need help with adding an image once they have click on something.
    On the left of the screen are sentences and on the right an image of a form. When they click each sentence on the left, writing appears on the form. Its very simple. With this said, what I would like to do is once the user click one of the sentences on the left, I would like a checkmark image to appear over the sentence so they know they have already clicked on it.
    How would I go about adding this to my code?
    var fields:Array = new Array();
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
        fields.push(new one_form());
        fields[fields.length-1].x = 141;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);   
        one_btn.removeEventListener(MouseEvent.CLICK, onClick1a);
        one_btn.buttonMode = false;
        //gotoAndStop("one")
    two_btn.addEventListener(MouseEvent.CLICK, onClick2a);
    two_btn.buttonMode = true;
    function onClick2a(event:MouseEvent):void
        fields.push(new two_form());
        fields[fields.length-1].x = 343.25;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);
        two_btn.removeEventListener(MouseEvent.CLICK, onClick2a);
        two_btn.buttonMode = false;
        //gotoAndStop("two")

    I don't know where you're positioning the button that should enable/disable the checkbox but for "one_btn" let's just say it's at position: x=100, y=200. Say you'd want the checkbox to be to the left of it, so the checkbox would be displayed at: x=50, y=200. Also say you have a checkbox graphic in your library, exported for actionscript with the name "CheckBoxGraphic".
    Using your code with some sprinkles:
    // I'd turn this into a sprite but we'll use the default, MovieClip
    var _checkBox:MovieClip = new CheckBoxGraphic();
    // add to display list but hide
    _checkBox.visible = false;
    // just for optimization
    _checkBox.mouseEnabled = false;
    _checkBox.cacheAsBitmap = true;
    // adding it early so make sure the forms loaded don't overlap the
    // checkbox or it will cover it, otherwise swapping of depths is needed
    addChild(_checkBox);
    // I'll use a flag (a reference for this) to know what button is currently pushed
    var _currentButton:Object;
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
         // Check if this button is currently the pressed button
         if (_currentButton == one_btn)
              // disable checkbox, remove form
              _checkBox.visible = false;
              // form should be last added to fields array, remove
              removeChild(fields[fields.length - 1]);
              fields.pop();
              // clear any reference to this button
              _currentButton = null;
         else
              // enable checkbox
              _checkBox.visible = true;
              _checkBox.x = 50;
              _checkBox.y = 200;
              // add form
              fields.push(new one_form());
              fields[fields.length-1].x = 141;
              fields[fields.length-1].y = -85;
              this.addChild(fields[fields.length-1]);
              // save this button as last clicked
              _currentButton = one_btn;
         // not sure what this is
        //gotoAndStop("one")
    I'd also centralize all the click handlers into a single handler and use the buttons name to branch on what to do, but that's a different discussion. Just see if this makes sense to you.
    The jist is a graphic of a checkbox that is a MovieClip symbol in your library exported to actionscript with the class name CheckBoxGraphic() is created and added to the display list.
    I made a variable that points itself to the last clicked button, when the "on" state is desired. If I detect the last clicked button was this button, I remove the form I added and the checkbox. If the last clicked button is not this button, I enable and position the checkbox as well as add the form.
    What is left to do is handle the sitation where multiple buttons are on the screen. When a new button is pushed it should remove anything the previous button added. This code simply demonstrates clicking the same button multiple times to toggle it "on and off".

  • Help with embedding videos

    Hello,
    I please need help with embedding videos from youtube. I do this via the Web panel (not the video panel) and copied the embed code on Youtube and pasted it into my Indesign CS6 (autoplay activated). I did it according to that helpful video: http://blogs.adobe.com/jlockman/2013/06/04/embedding-youtube-videos-into-your-dps-project/
    However, when testing this on my iPad, only a white box appears and I cannot press a play button.

    Are you sure, that you changed code from youtube?
    Code from youtube is:
    src="//www.youtube.com/embed/KulFWmvbEu4
    but you need to change it to
    src="https://www.youtube.com/embed/KulFWmvbEu4
    For us, best result is to embed video via:
    menu Object > Include HTML (don't know exact english name of menu), paste iframe code with correct http link and then it works.

  • Help with adding a hyperlink to a button?

    We have a simple little site we built in Catalyst and everything works great. The only problem is that we cannot figure out how to add a hyperlink to one of the buttons in the animation. We simply want to be able to click on the button and go to another site (the client's Facebook page specifically). Can anyone provide some insight? Thanks!

    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact.
    The headers of the message sent from your address are shown below:
    From [email protected] Tue Nov 03 19:08:07 2009
    Received: from mail.sgaur.hosted.jivesoftware.com (209.46.39.252:45105)
    by host.pdgcreative.com with esmtp (Exim 4.69)
    (envelope-from <[email protected]>)
    id 1N5TPy-0001Sp-J1
    for [email protected]; Tue, 03 Nov 2009 19:08:07 -0500
    Received: from sgaurwa43p (unknown 10.137.24.44)
         by mail.sgaur.hosted.jivesoftware.com (Postfix) with ESMTP id 946C5E3018D
         for <[email protected]>; Tue,  3 Nov 2009 17:08:03 -0700 (MST)
    Date: Tue, 03 Nov 2009 17:07:49 -0700
    From: Tvoliter <[email protected]>
    Reply-To: [email protected]
    To: Matthew Pendergraff <[email protected]>
    Message-ID: <299830586.358941257293283616.JavaMail.jive@sgaurwa43p>
    Subject: Help with adding a hyperlink to a button?
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_36702_1132901390.1257293269030"
    Content-Disposition: inline
    X-Spam-Status: No, score=-3.4
    X-Spam-Score: -33
    X-Spam-Bar: ---
    X-Spam-Flag: NO

  • I need help with my videos now that I downloaded the ios6.  It won't play.

    I need help with my videos. I downloaded the ios6 and now they won't play.  Does anyone know how to fix?

    Wanted to let everyone know that after looking at other discussions I did a hard reboot and it is now working.  Love this site!

  • Need help with adding emoji to my hubby's phone don't see it when I click on the keyboard tab

    I need help with adding emoji to my hubby's iPhone when I go to settings then the keyboard tab it's not there

    I did that bad it's not there and doesn't give me to option to click on it

  • Help with flash video buffering

    I need help with flash video buffering. I've created a
    buffering graphic to show up when the clip is loading. The problem
    that I'm having is that when the video finishs playing, the buffer
    is empty and the graphic pops back on. The following is the code
    that I'm using to call and buffer the video. Any help would be
    great!
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(10);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
    bufferClip._visible = false;
    if(info.code == "NetStream.Buffer.Empty"){
    bufferClip._visible = true;
    if (info.code == "NetStream.Stop") {
    bufferClip._visible = false;
    theVideo.attachVideo (ns);
    ns.play("my_clip.flv");
    rewindButton.onRelease= function(){
    ns.seek(0);
    playButton.onRelease= function(){
    ns.pause();
    }

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

  • I need some help with my video - need to blur some footage.

    Hi!
    I was wondering if somebody could help me out with my video. I've got some video footage downloaded from the internet (with permission, of course) and I was wondering if there is any way I could blur the clip and then have it slowly fade into focus. I know how to blur the video (the Gaussian blur effect), but I basically want it to look like I've filmed the footage myself and I'm slowly turning the focus wheel until the image is in focus.
    Obviously it's quite easy to do in-camera but for my film I needed footage of animals and wasn't able to film any of my own so I needed to source footage online. It's really imperative to my production that I get this blur thing working so if anyone can please explain to me the easiest way to do it then I would be extremely thankful! (That's if it is possible at all... I sure hope so)
    I've searched online but so far I've only been able to find videos explaining how to blur a small section of the image (e.g. blurring out logos, faces, etc)
    Thanks a lot

    For what you want to do, the 'Camera Blur' effect (Windows only)
    will work much better than Gaussian Blur.
    Add the effect to the clip (or to an Adjustment Layer above to the clip),
    then use keyframes to change the amount of blur over a specified
    period of time.
    Camera Blur effect (Windows only)
    http://help.adobe.com/en_US/premierepro/cs/using/WS1E7C690B-2342-43c3-9253-2BAAFF4168EF.ht ml#WS1c9bc5c2e465a58a91cf0b1038518aef7-7deaa
    Adjustment Layers - Pr
    http://helpx.adobe.com/premiere-pro/using/help-tutorials-adjustment-layers.html#id_1358
    Adding, navigating, and setting keyframes - Pr
    http://help.adobe.com/en_US/premierepro/cs/using/WS1c9bc5c2e465a58a91cf0b1038518aef7-7e63a .html
    WS3878526689cb91655866c1103906c6dea-7df0a.html

  • Help with syncing video to my iPhone

    ok, so heres the deal. i downloaded a few episodes of a show that were already in .mp4 and so i added them into itunes and they show up whenever you hit the movies tab on the left side of the screen but then whenever i went to add them to my telephone through the iphone sync part then they werent there. so then i went and uninstalled and redownloaded and then installed itunes. then, the videos showed up under video tab in the tv shows section on the iphone sync screen and then whenever i click them to sync them then it tells me that they are not in the right format. so then i used the itunes converter thing to convert the video and then it did its thing and the resulting video is a completely white screen with no video at all whatsoever. id really apreciate if someone could help me figure this out because im getting very frustrated with it lol.

    bump.

  • [CS3 JS] Help with adding textMacros

    I can get a textMacro added with the following.
    app.textMacros.add("myName", "this is some text")
    What I am having trouble with is having the Remember Text Attributes be grabed or set to true.
    Any one know what the syntax is for setting this during the add()
    also how do you insert a macro via a javascript?
    Mahalo
    David

    These forums are pointless. Adobe must believe that other users will cut the mustard. Absolutely a waste of effort for everyone. Adobe should PAY at least a junior developer involved in the projects to monitor and help with these posts. FLEX rules yeah and thousands more do scripting than develop plug ins...
    Come on Adobe, step up your better than this. Customer Service can be free to the customers ... we are not talking about GET IT ALL FREE, talking about buy it and create a community and support it, but then again LAYERS and INDESIGN SECRETS have people who actually want to help users rather than rabbit hole everything.
    Please join hands and SING...

  • Need help with N93i Video sound/audio problem........

    hi,
    i really hope someone can help me out here...
    after i have done with recording video clips and i replay the video,the phone speaker came out a very noisy sound (is like a bad Radio Frequencies noise)
    why or how is this happen ???
    how can i stop the noisy sound that came out from the phone speaker ?
    Thank you in advance !

    hi el_loco,
    yes,the sound appear to be the same too when i play on the pc
    the noisy sound came from the loudspeaker outlet,
    i got a strong feeling that somethings is wrong with the build in microphones or maybe the loudspeaker ???Message Edited by nl3181 on 15-Jun-200709:23 PM

Maybe you are looking for

  • Newbie glad to learn of forum! ThinkVantage Update problems

         I'm thrilled to learn of this forum.  Last year I bought my 4th T-series, a T61 15" wide-screen with WinXP (6459-CTO).  Can it be that the new BIOS (2.09-1.08) or the Power Manager (1.22) updates I just downloaded and installed will really solve

  • Problem with month to month subscription of Illustrator

    Hi - I have the month to month subscription of Illustrator on my computer. Today it won't open and says I am missing certain plug-ins? Like "round corners"? How do I fix this?

  • Email Server

    Starting a few days ago my wife has been unable to connect to the Road Runner email server to access her email. We've tried deleting the account and adding it back with no success. All the account info. is correct and no changes were made to the phon

  • IExpenses Approval Workflow

    Hi All, We have a requirement to customize the Expenses Approval workflow (AP Standard Expense Report Process Workflow) to send additional notifications. Once the seeded workflow is customized by adding a custom process, I am unable to figure out how

  • BI Load issue in the transformation/DTP after SP 17

    Hello, After SP 17 applied in our BI system, we are having load issue in one particular transformation/DTP. See below the errors: u2022 Messages for 101 data records saved; request is red acc. to configuration u2022 Thee is no active nametab in the s