How to remove the object in video

I recorded a concert of kid, but some parents walked in my path for 3 seconds, how do I remove these topic unwanted on my video of EPA 12?

Angus-Y

What version of Premiere Elements you are using and on what computer operating system is running?

How much of the frame of these consumes upward? It is small enough so that you can insert a picture indeed image to replace with this type of coverage?

Can cut you just 3 seconds of video?

I think that the expression of today for this kind of thing is photobombing, I suppose that videobombing in this case. Depending on the location of the people, you could do a depth of field type of thing with matte where they are on your person of interest fading is in full discussion.

The details of the circumstance will lead plans to save the 3 seconds of video.

RTA

Tags: Premiere

Similar Questions

  • [REQUEST] How to remove the object from the list to display and memory that added dynamic

    Hi there everyone,

    I have a question which I hope you guys can help me with, so the question is:


    "How to remove us (sprite object that has an external swf that it is child) display and, above all, of the memory, but we can still use the same variable to add another object (yes another sprite like the one we have removed yet a different content)..,

    I did tried the removeChildAt thing he did remove all the child of the display list, but I still can hear the sound of the video running.

    Here is the code on a small scale of what I do (sorry that I can only give you chunk code loading and adding)

    var SWFList:XMLList; used to contain a list of all the external swf source, atribute and etc.
    var totalSWF:int; the total number of swf external, it must be charged

    var swfLoader:Loader; instance of the loader class to load external swf file

    function loadSWF (): void
    {
    for (var i: Number; i < totalSWF; i ++)

    swfLoader = new Loader();
    swfLoader.contentLoaderInfo.addEventListener (Event.COMPLETE, onSWFLoadComplete);
    swfLoader.load (new URLRequest (SWFList [i], .@source));
    }

    function onSWFLoadComplete(e:Event):void

    {

    this.stage.addChild (e.target.content);

    }

    and also if you can give an example of a good method of dynamic add the object to the stage I would really appreciate cause I suspect mine are bad method.

    Thank you all.

    If you have been publishing for fp 10, just use unloadAndStop().

    I assume you're not publication for fp 10 so you have to use something like:

    function clearScreen (): void
    {
    var mc:MovieClip = MovieClip (swfLoader.content);

    MC.yourflvintheloadedswf.Stop ();

    mc.mcinyourloadedswfthathasalistener.removeEventListener (MouseEvent.CLICK, whateverF);

    etc.

    swfLoader.unload ();
    }

  • How to remove the object dynamically?

    Hi all

    I created an object dynamically. But I don't know how to remove dynamically in QML.

    I called the function to "destroy ()", but I don't know it works or not. The code is as follows:

    LogView.qml

    import bb.cascades 1.0
    
    ScrollView {
        id:logviewaaa
    
        signal addnewlog
    
        property variant number:100
        property variant log1
        property variant log2
        property variant log3
        property variant log4
        property variant log5
        property variant log6
        property variant log7
        property variant log8
        property variant log9
        property variant log10
    
        onAddnewlog:{
    
            number=logcontain.count()
            console.log("the log number is "+number)
            if(number == 0)
            {
                console.log("ready to add the first log");
                log1 = log.createObject(logcontain);
                console.log("ready to add the first log");
                logcontain.add(log1);
    
            }else if(number ==1){
    
                log2 = log.createObject(logcontain)
                logcontain.add(log2)
    
            }else if(number ==2){
                log3 =log.createObject(logcontain)
                logcontain.add(log3)
            }else if(number ==3){
                log4=log.createObject(logcontain)
                logcontain.add(log4)
            }else if(number == 4){
                log5=log.createObject(logcontain)
                logcontain.add(log5)
            }else if(number ==5){
                log6=log.createObject(logcontain)
                logcontain.add(log6)
            }else if(number ==6){
                log7=log.createObject(logcontain)
                logcontain.add(log7)
            }else if(number ==7){
                log8=log.createObject(logcontain)
                logcontain.add(log8)
            }else if(number ==8){
                log9=log.createObject(logcontain)
                logcontain.add(log9)
            }else if(number ==10){
                log10=log.createObject(logcontain)
                logcontain.add(log10)
            }
         }
    
        Container{
         id:logcontain      
    
        onCreationCompleted:{
        }
    
          attachedObjects:[
              ComponentDefinition{
                  id:log
                  source:"Log.qml"
              }
    
          ]
    
        }
    
    }
    

    Log.QML:

    import bb.cascades 1.0
    
        Container {
           id:root
            signal deletethislog
    
            TextArea{
                id:recordlog
                inputMode:TextAreaInputMode.Text
            }
        Container {
             id:buttoncontain
            layout: StackLayout {
                orientation: LayoutOrientation.LeftToRight
            }
            Button {
                id: edittext
                imageSource: "asset:///icons/ic_edit.png"
                onClicked: {
                    recordlog.editable = true
                }
    
            }
            Button {
                id: oktext
                imageSource: "asset:///icons/ic_done.png"
                onClicked: {
                    recordlog.editable = false
                }
    
            }
            Button{
                id:deletetext
                imageSource: "asset:///icons/ic_delete.png"
                onClicked: {
                    destroy()
                }
    
                layoutProperties: AbsoluteLayoutProperties {
    
                }
                horizontalAlignment: HorizontalAlignment.Right
    
            }
        }
        onCreationCompleted:{
        }
    }
    

    Thank you.

    brad_qqq

    I solved this problem. I always use "destroy()" function to solve. The code is as follows:

    LogView.qml

    import bb.cascades 1.0
    
    ScrollView {
        id:logviewaaa
    
        signal addnewlog
    
        property variant number:100
        property variant log1
        property variant log2
        property variant log3
        property variant log4
        property variant log5
        property variant log6
        property variant log7
        property variant log8
        property variant log9
        property variant log10
    
        onAddnewlog:{
    
            number=logcontain.count()
            console.log("the log number is "+number)
            if(number == 0)
            {
                console.log("ready to add the first log");
                log1 = log.createObject(logcontain);
                console.log("ready to add the first log");
                logcontain.add(log1);
                log1.objectaaa=log1
                log1.maincontain=logcontain
    
            }else if(number ==1){
    
                log2 = log.createObject(logcontain)
                logcontain.add(log2)
                log2.objectaaa = log2
                log2.maincontain = logcontain
    
            }else if(number ==2){
                log3 =log.createObject(logcontain)
                logcontain.add(log3)
                log3.objectaaa = log3
                log3.maincontain = logcontain
            }else if(number ==3){
                log4=log.createObject(logcontain)
                logcontain.add(log4)
                log4.objectaaa = log4
                log4.maincontain = logcontain
            }else if(number == 4){
                log5=log.createObject(logcontain)
                logcontain.add(log5)
                log5.objectaaa = log5
                log5.maincontain = logcontain
            }else if(number ==5){
                log6=log.createObject(logcontain)
                logcontain.add(log6)
                log6.objectaaa = log6
                log6.maincontain = logcontain
            }else if(number ==6){
                log7=log.createObject(logcontain)
                logcontain.add(log7)
                log7.objectaaa = log7
                log7.maincontain = logcontain
            }else if(number ==7){
                log8=log.createObject(logcontain)
                logcontain.add(log8)
                log8.objectaaa = log8
                log8.maincontain = logcontain
            }else if(number ==8){
                log9=log.createObject(logcontain)
                logcontain.add(log9)
                log9.objectaaa = log9
                log9.maincontain = logcontain
            }else if(number ==10){
                log10=log.createObject(logcontain)
                logcontain.add(log10)
                log10.objectaaa = log10
                log10.maincontain = logcontain
            }
         }
    
        Container{
         id:logcontain      
    
        onCreationCompleted:{
        }
    
          attachedObjects:[
              ComponentDefinition{
                  id:log
                  source:"Log.qml"
              }
    
          ]
    
        }
    
    }
    

    Log.QML:

    import bb.cascades 1.0
    
        Container {
           id:root
           //objectName:"thislog"
            signal deletethislog
            property variant objectaaa
            property variant maincontain
    
            TextArea{
                id:recordlog
                inputMode:TextAreaInputMode.Text
            }
        Container {
             id:buttoncontain
            layout: StackLayout {
                orientation: LayoutOrientation.LeftToRight
            }
            Button {
                id: edittext
    
                imageSource: "asset:///icons/ic_edit.png"
                onClicked: {
                    recordlog.editable = true
                }
    
            }
            Button {
                id: oktext
                imageSource: "asset:///icons/ic_done.png"
                onClicked: {
                    recordlog.editable = false
                }
    
            }
            Button{
                id:deletetext
                imageSource: "asset:///icons/ic_delete.png"
                onClicked: {
    
                   selfdestroy()
                }
    
                layoutProperties: AbsoluteLayoutProperties {
    
                }
                horizontalAlignment: HorizontalAlignment.Right
    
            }
        }
        onCreationCompleted:{
            deletetext.clicked.connect(deletethislog)
        }
        function selfdestroy(){
            objectaaa.destroy()
            maincontain.remove(objectaaa)
    
        }
    }
    

    brad_qqq

  • How to remove the list of videos frequently consulted in media player?

    Surf the net and read after the videos, videos are listed in windows media player.  How can I remove the registration and/or the actual videos?

    Hello

    Please follow the steps given in the following link and check if it helps.

    Remove information about what you have played in Windows Media Player

    http://Windows.Microsoft.com/en-us/Windows7/remove-information-about-what-you-have-played-in-Windows-Media-Player

    Let us know if it helps!

  • How to remove the object from the stage

    Hello

    I am currently implementing an AS3 code that generates a snow effect on the scene.  I am using the code from this site, but has difficulty:

    http://www.Kirupa.com/developer/flashcs4/falling_snow_as3_cs4_pg5.htm

    I have no difficulty in implementing of the snow, but I can't understand how get rid of it once it's there!  Here's the code, I have:

    (main.as)

    main/public class extends MovieClip

    {

    var snowamount = 50;

    public void main()

    {

    scene9. SnowPlus.addEventListener (MouseEvent.MOUSE_DOWN, moresnow);

    }

    function makeItSnow()

    {

    for (var i: int = 0; i < snowamount; i ++)

    {

    var newSnowFlake:Snowflake = new Snowflake();

    this.addChild (newSnowFlake);

    newSnowFlake.SetInitialProperties ();

    triggerSnowAnimation();

    }

    }

    function moresnow (MouseEvent): void

    {

    snowamount += 20;

    makeItSnow();

    }

    function triggerSnowAnimation()

    {

    If (snowamount > = 160)

    {

    scene9.gotoAndPlay (3);

    scene9. SnowPlus.Visible = false;

    }

    }

    (Snowflake.as)

    SerializableAttribute public class extends MovieClip Snowflake

    {

    private var xPos:Number = 0;

    private var yPos:Number = 0;

    private var xSpeed:Number = 0;

    private var ySpeed:Number = 0;

    private var radius: Number = 0;

    private var scale: Number = 0;

    private var alphaValue:Number = 0;

    private var maxHeight:Number = 0;

    private var maxWidth:Number = 0;

    public void Snowflake()

    {

    }

    public void SetInitialProperties()

    {

    xSpeed is.05 + Math.random () *.1;.

    ySpeed =.1 + Math.random () * 3;

    RADIUS =.1 + Math.random () * 2;

    Scale =.01 + Math.Random ();

    alphaValue =.1 + Math.Random ();

    var stageObject:Stage = this.stage in the stadium;

    maxWidth = stageObject.stageWidth;

    maxHeight = stageObject.stageHeight;

    This.x = Math.random () * maxWidth;

    This.y = Math.random () * maxHeight;

    PosX = this.x;

    yPos = this.y;

    this.scaleX = this.scaleY = scale;

    This.Alpha = alphaValue;

    this.addEventListener (Event.ENTER_FRAME, MoveSnowFlake);

    }

    function MoveSnowFlake(e:Event)

    {

    xPos += xSpeed;

    yPos += ySpeed;

    This.x += radius * Math.cos (xPos);

    This.y += ySpeed;

    If (this.y - this.height > maxHeight)

    {

    This.y = - 10 - this.height;

    This.x = Math.random () * maxWidth;

    }

    }

    }

    The code is not so difficult to understand, in fact.  I have a button that adds "snowamount" to the variable, so more snow is done on the scene when the button is clicked.  However, once the "snowamount" gets above 160 bee, I trigger an animation.  Once the animation is completed, I want the snow to disappear from the scene.  But I can't understand the correct way to do everything.  Any help would be appreciated!  Thank you very much in advance.

    create an array and store your references to Snowflake in this table.  When you are ready to remove the snow flakes, loop in the table.

    main/public class extends MovieClip

    {

    var snowamount = 50;

    var snowFlakeA:Array = [];

    public void main()

    {

    scene9. SnowPlus.addEventListener (MouseEvent.MOUSE_DOWN, moresnow);

    }

    function makeItSnow()

    {

    for (var i: int = 0; i< snowamount;="">

    {

    var newSnowFlake:Snowflake = new Snowflake();

    snowFlakeA.push (newSnowFlake);

    this.addChild (newSnowFlake);

    newSnowFlake.SetInitialProperties ();

    triggerSnowAnimation();

    }

    }

    function moresnow (MouseEvent): void

    {

    snowamount += 20;

    makeItSnow();

    }

    function triggerSnowAnimation()

    {

    If (snowamount > = 160)

    {

    scene9.gotoAndPlay (3);

    scene9. SnowPlus.Visible = false;

    }

    }

    (Snowflake.as)

    SerializableAttribute public class extends MovieClip Snowflake

    {

    private var xPos:Number = 0;

    private var yPos:Number = 0;

    private var xSpeed:Number = 0;

    private var ySpeed:Number = 0;

    private var radius: Number = 0;

    private var scale: Number = 0;

    private var alphaValue:Number = 0;

    private var maxHeight:Number = 0;

    private var maxWidth:Number = 0;

    public void Snowflake()

    {

    }

    public void SetInitialProperties()

    {

    xSpeed is.05 + Math.random () *.1;.

    ySpeed =.1 + Math.random () * 3;

    RADIUS =.1 + Math.random () * 2;

    Scale =.01 + Math.Random ();

    alphaValue =.1 + Math.Random ();

    var stageObject:Stage = this.stage in the stadium;

    maxWidth = stageObject.stageWidth;

    maxHeight = stageObject.stageHeight;

    This.x = Math.random () * maxWidth;

    This.y = Math.random () * maxHeight;

    PosX = this.x;

    yPos = this.y;

    this.scaleX = this.scaleY = scale;

    This.Alpha = alphaValue;

    this.addEventListener (Event.ENTER_FRAME, MoveSnowFlake);

    }

    function MoveSnowFlake(e:Event)

    {

    xPos += xSpeed;

    yPos += ySpeed;

    This.x += radius * Math.cos (xPos);

    This.y += ySpeed;

    If (this.y - this.height > maxHeight)

    {

    This.y = - 10 - this.height;

    This.x = Math.random () * maxWidth;

    }

    }

    function removeSnowF (): void {}

    for (var i: int = snowFlakeA.length - 1; i > = 0; i--) {}

    this.removeChild (snowFlakeA [i]);

    snowFlakeA.splice (i, 1);

    }

    }

    }

  • How to remove the objects that appear only in outline view?

    I've hidden objects in a file that only appear in schema view. It wont let me select them and is to make the file larger then it must be. Any ideas to get rid of these unwanted items? Thank you!

    You can check if there is a clipping mask in this layer. Open the layer by clicking on the triangle.

  • I would like to know how to remove the box/cursor information dialog box that appears whenever I have stop my mouse on an object.

    I would like to know how to remove the box/cursor information dialog box that appears whenever I have stop my mouse on an object.

    Have you tried to uncheck both options via Control Panel / folder Options / View?

    "Displays the size of file in folder tips".

    "Display descriptions pop - up for folder and desktop items"

  • How to remove an object (created by a script) element of the project?

    For example:

    TempNull = app.project.activeItem.layers.addNull ();

    .

    .

    .

    Use somehaw

    .

    .

    .

    TempNull.remove ();

    It will remove the object model

    But how the remove project (newly created element Null in folder "Solids")

    I want to keep the structure of the project the same as before the execution of the script.

    var comp = app.project.activeItem;
    var par = comp.pixelAspect;
    
    var layer = comp.selectedLayers[0];
    var rect = layer.sourceRectAtTime(0,false);
    var lpos = layer.position.value;
    var x = rect.left + rect.width/2+lpos[0];
    var y = rect.top + rect.height/2+lpos[1];
    
    app.beginUndoGroup("Centroid");
    
    center = comp.layers.addNull();
    center.name = "CENTROID";
    center.position.setValue([x, y]);
    
    var SceneScaleNull = comp.layers.addNull();
    var SceneScaleNullSource = SceneScaleNull.source; // grab null's source
    SceneScaleNull.name = "fixPAR";
    
    center.parent = SceneScaleNull;
    
    SceneScaleNull.property("Scale").setValue([100/par,100]);
    
    SceneScaleNull.remove();
    SceneScaleNullSource.remove(); // and remove it
    
    app.endUndoGroup();
    
  • How to remove unused objects from the webcatalogs?

    Hi friends,

    How to remove unused objects from the webcatalogs?
    is there a utility like the removal of unused objects of the physical layer in RPD?

    Thank you

    Hello

    Click link responses to the left of the answers click on the catalog button manage manage catalog, you can delete the unused objects

    Concerning

    NGO

  • Tecra R10 - how to remove the memory module?

    Hello!

    How to remove the memory module?

    Get the following message and for me, it means that one of the modules is broken:

    Out of memory error
    Address = H 00034000
    Read Date = H 28034000
    Write data = H 00034000

    For my opinion, the computer should start up again when I remove the memory broken slice?

    The Australia has soon

    Hello

    You can easily remove the memory modules.
    I think that the Bay is placed at the bottom of the unit.
    Remove the screw that is blocking the Bay, and you will have access to the module.

    Here is a video of how do this on another Satellite L500 laptop. But the procedure is not very different on Tecra R10
    http://forums.computers.Toshiba-Europe.com/forums/Ann.jspa?annID=81

    I hope this helps a little

  • Satellite A80: How to restore the audio and video codecs?

    How to restore the audio and video codecs that are installed by default on my Satellite A80 with XP Home edition?
    I removed the safe mode, due to a problem with the Pinnacle Codec installed by Pinnacle Studio 10.
    Now, I need to put the video standard in audio codecs.
    I already downloaded the Microsoft Mediaplayer codec package and video sound new fr in Media Player.
    Unfortunately I have always its program to diagnose Toshiba during the test of its Midi and Wave.
    System Restore came with the message that the restoration was not possible because no changes had been made.

    Post edited by: roel

    Hello

    Try to use the tool "system restore."
    This application restores the operating system to the beginning.
    Maybe it will work.

  • 2015 envy 17 t-n100 I76700HQ: how to remove the back cover of a 17 t-n100 envy?

    Hello, I upgrade my Ram and hard drive 16 GB of Ram and 1 TB ssd drive. I looked everywhere, but for the life of me I can't find any info on how to remove the back cover. There are utube videos that show older versions, but they are completely different. You can provide any help would be greatly appreciated.

    Thank you

    Hello

    Did you know that it's a job for parts of authorized service provider ? If you wish, for the RAM, try it please:

    1. turn off the computer. If you don't know if the computer is off or in hibernation, turn on the computer and then stop it through the operating system.
    2. remove power from the computer by disconnecting the power cord from the computer.
    3. disconnect all external devices from the computer.
    4. remove the battery (see battery on page 27).
    5. remove the optical drive (see optical drive on page 28).
    6. remove the bottom cover (see low cover on page 31).

    as mentioned on page #38 of the following record:

    http://h10032.www1.HP.com/CTG/manual/c04696907.PDF

    DIY will void the warranty.

    Good luck.

  • Satellite C850-178 - how to remove the keys from keyboard for cleaning?

    Nice day!

    Recently, I accidentally spilled juice my * Toshiba C850-178 * laptop keyboard and some keys are now sticky or difficult to press.

    I would like to know how to clean sticky keys.
    I've been looking for a way how to remove the keyboard, but I've not been successful.

    Please help me.
    Thank you.

    Hello

    You can ONLY remove the key caps.
    The keyboard cannot be deleted.

    Here are some interesting videos I found on youtube,
    http://www.YouTube.com/watch?v=o8vpX1t_jSc

  • How to remove the laptop battery?

    Hello!

    My question seems a little odd, isn't it? I bought a HP Pavilion dv7-1285DX two months ago. I don't know how to remove the battery from the laptop! Sounds crazy, I use HP laptop for 5 years, but I could not understand how the hell should I take the battery from this new guy! Could someone please tell me what to do. If you know how to do it please show it with a photo or something, or set up a website or video or something.
    Thank you and all comments are appreciated.

    Siar

    Message edited by Siar on 13/10/2009 02:26

    Hello

    Follow these steps: -.

    BE VERY CAREFUL!

    Before you begin any Setup or uninstall procedure:

    1 shut down the computer. If you do not know if the

    computer is turned off or in hibernation, turn on the computer.

    and then stop it through the operating system.

    2. disconnect all the external devices connected to the computer.

    3. disconnect the power cord.

    4. remove the battery by following these steps:

    a. turn the computer upside down with the front

    towards you.

    b. drag and hold the 1 battery release latch to the left.

    (Disengage the front edge of the battery of)

    the computer).

    c. lift the front edge of the battery 2 and bring her back.

    d. remove the battery.

     

    Reverse the above procedure to install the battery.

  • How to remove the toolbar of tango?

    I got a tango toolbar and adware gab.path downloaded on my computer, not sure where the have been since.  I have deleted the gab.path, but can not remove the toolbar of the tango.  norton technical support told me that it is used for downloading music, videos and movies if they could not help me to uninstall.  It come with microsoft updates?

    Take a look on:

    http://social.answers.Microsoft.com/forums/en-us/msescan/thread/61a39b33-790c-4ad8-B402-7c8fde037b99

    How to remove the toolbar of Tango

    TaurArian [MVP] 2005-2010 - Update Services

Maybe you are looking for