How to achieve an effect...

I want to know how to go about making this effect:
I want to have a black screen with credits rolling, but in the upper right corner have a screen with footage playing.
I'm trying to make a bloopers screen while rolling credits.
Help?

aahhh, let's call it "Jackie Chan" credits..
what I would do, it needs QTpro...:
use iM to create the rolling titles on black; export/share as Quicktime/Full Quality...
use another iM project to create the bloopers, export/share as Quicktime/Full Quality...
export a single frame of black from iM...
now, open still.pic, credits.mov and bloopers.mov in QTpro
we use the still.pic just as background...
now, copy-all of blooper.mov, switch to still.pic, choose "add scaled"
click -J, select video-track2, choose size, make blooper.mov smaller, put in place....
same with credits.mov: copy, add scaled, resize...
export final credits as dv stream, import to your project....
if I have time today, I will add that with pictures and examples to my website HowDidYouDoTHAT.... I'll post here...

Similar Messages

  • How to achieve this Effect?

    Hey everyone i was wondering if you guys had any idea how to achieve this effect in flash.....http://www.youtube.com/watch?v=QftcJtvLr8g

    While you could probably do this in Flash, it is much more simply done using AfterEffects. There's a splendid text tool that can be tortured into effects like this. Have a look at the podcasts from Creative Cow on AfterEffects for some interesting examples.

  • How to achieve this effect, please?

    Hello
    I have an image here:
    http://stevehigham59.7host.com/orange.jpg
    How would I achieve that effect, please - with the different shapes and colours against that blue background inside a blue frame? I'm just wondering where to begin.
    Thanks for any advice.
    Steve

    Many thanks to you all for your replies.
    I haven't got Illustrator, I'm afraid so Photoshop will have to suffice.
    I've saved all replies and will try out your suggestions.
    Thanks again.
    Steve

  • Does any body no how to achieve this effect in ae or premiere pro cs5

    looking to see if any1 can help me achieve this effect for my music videos http://www.youtube.com/watch?v=xIBEl35_wB0&feature=related is there a plug in like fcp or a easy way to achieve this appreciate any help thanks....

    I'd use a loopOut expression on 3 keyframes for opacity. I'd also probably experiment with blending modes and throw in the exposure effect to get the flash at the end. A 32 bit comp will help you get a better blending mode with the footage. This will get you blink effect down, then simply cut to the revealed video. You'll end up with 3 layers in your composition. The bottom layer, the blinking layer, then then a duplicate of the blinking layer without effects.
    The loop out expression is prewritten for you and requires no modification. You'll find it by clicking on the icon just to the right of the pickwhip expression and selecting Properties.
    Your blink layer's opacity property should look like this:
    The first and last keyframes are set to 100, the middle, as you can see is set to 10% but it's a matter of personal preference. This will give you 2 frames of full visibility and one at 10%. Changing the spacing of these 3 keyframes changes the look of the blink.

  • How to achieve Amazing Effects in iMovie

    Hi everyone
    I'm trying to achieve a cartoon style effect for a short comedy clip in iMovie and was wondering if anyone knew how to do this. I used the "Cartoon Style" visual but it doesn't seem to be that effective. I've left a link so you can review my progress and give any suggestions on how to improve this. Thanks!
    http://www.campusmoviefest.com/movies/11402-insane-interviews

    elgo wrote:
    ...  I've left a link so you can review my progress and ...
    would be helpful you give us a (YouTube-) link to some example you like to achieve ...-

  • FCPX: How to Achieve Weird Effect

    I found an effect in a video I would like to do but how would I do this?
    You can see the outlining effect at 00:03 in this video.
    http://youtu.be/Ay1Jvwwk4Qs

    Oh - that's just the basic "Edges" effect in Motion. I set it up for you and you can download it here:
    http://sight-creations.com/fxexchange/Edges.zip.
    To install, unzip the download, move the Edges folder into /Users/YourUserName/Movies/Motion Templates/Effects/Basics/
    You will want to color correct the clip and set the saturation to 0, otherwise you'll get color outlines in places. It will also work best if the subject has been green screened as in the video you referenced.
    Have fun

  • Can someone tell me how to achieve this effect?

    I know FlexStore :
    http://examples.adobe.com/flex2/inproduct/sdk/flexstore/flexstore.html
    has a cool effect when you browse > Product Details. by
    clicking one product.
    1) Click the Product button.... to see Browse product panel
    2) Click one of cellphone to see Product Detail panel
    Note : Transition that occurs between.....
    Does anyone know how to do this? name of the effect? or
    Transition? any info i can start looking into?
    Thansk,

    It looks like it's a Move effect according to the source code
    below. Hope this helps!
    John
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    // Copyright (C) 2003-2006 Adobe Macromedia Software LLC and
    its licensors.
    // All Rights Reserved.
    // The following is Sample Code and is subject to all
    restrictions on such code
    // as contained in the End User License Agreement
    accompanying this product.
    // If you have received this file from a source other than
    Adobe,
    // then your use, modification, or distribution of it
    requires
    // the prior written permission of Adobe.
    -->
    <!-- width and height hard-coded in the root tag to better
    support the
    Design view in FlexBuilder since we know the width and
    height from the
    settings in flexstore.mxml -->
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:productsView="productsView.*"
    width="990" height="550"
    currentState="showFilter">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import samples.flexstore.Product;
    private var _catalog:ArrayCollection;
    [Bindable]
    public function get catalog():ArrayCollection
    return _catalog;
    public function set catalog(c:ArrayCollection):void
    _catalog = c;
    if (filterPanel != null)
    filterPanel.filter.count = c.length;
    public function addToCompare(product:Product):void
    //setting the state before adding the product avoids
    jumpiness in the transition, not sure why
    currentState = &apos;showFilter&apos;;
    filterPanel.productList.addProduct(product);
    public function addToCart(product:Product):void
    //setting the state before adding the product avoids
    jumpiness in the transition, not sure why
    currentState = &apos;showCart&apos;;
    cartPanel.productList.addProduct(product);
    ]]>
    </mx:Script>
    <mx:HBox
    styleName="colorPanel"
    dropShadowEnabled="true"
    height="100%" width="100%"
    verticalScrollPolicy="off"
    horizontalGap="0">
    <productsView:Grip id="filterGrip"
    gripIcon="@Embed(&apos;/assets/icon_magnifier.png&apos;)"
    gripTip="Show filter panel" click="currentState =
    &apos;showFilter&apos;"/>
    <productsView:ProductFilterPanel id="filterPanel"
    width="265" height="100%"
    filter="catalogPanel.filter(event.filter, event.live)"
    compare="catalogPanel.compare(filterPanel.productList.getProducts())"
    creationComplete="if (catalog) filterPanel.filter.count =
    catalog.length"/>
    <mx:Spacer width="100%"/>
    <productsView:ProductCart id="cartPanel" width="265"
    height="100%"/>
    <productsView:Grip id="cartGrip"
    gripIcon="@Embed(&apos;/assets/icon_cart_empty.png&apos;)"
    gripTip="Show cart" click="currentState =
    &apos;showCart&apos;"/>
    </mx:HBox>
    <productsView:ProductCatalogPanel id="catalogPanel" y="4"
    width="685" height="540"
    catalog="{catalog}"
    compare="addToCompare(event.product)"
    purchase="addToCart(event.product)"
    cartCount="{cartPanel.numProducts}"/>
    <mx:states>
    <mx:State name="showFilter">
    <mx:SetStyle target="{catalogPanel}" name="left"
    value="285"/>
    </mx:State>
    <mx:State name="showCart">
    <mx:SetStyle target="{catalogPanel}" name="right"
    value="285"/>
    </mx:State>
    </mx:states>
    <!--
    make sure to use transitions here instead of applying a Move
    effect
    to the Panel itself which will result in odd behavior
    -->
    <mx:transitions>
    <mx:Transition fromState="*" toState="*">
    <mx:Move target="{catalogPanel}" />
    </mx:Transition>
    </mx:transitions>
    </mx:Canvas>

  • How to achieve an effect similar to this

    I was wondering if an effect similar to the intro in this video can be done in Motion, and if anyone has any tips/tricks on how to go about doing it. Here's the video I'm referring to:  http://www.youtube.com/watch?v=E4yFfCcg4Q8&feature=relmfu
    I'm fairly new to motion, and everything I've tried in my attempts to recreate the water-ish effect flowing across the page has been pretty unsuccessful, so any thoughts or suggestions would be greatly appreciated.

    hi
    yes you could do something like this in Motion. Have a look at the Particle Emitters, there are a large number of prebuilt ones in the Library. Then you can animate it across the screen with a soft edged mask to bring it on and off.
    hth
    adam

  • How to achieve this effect (similar to timeout)?

    I want to achieve something like this:
    if(some condition is met)
         //Do this
    else {
          Start a timer
          //Start a thread
          If(timer expired) {
                   //Clean up the thread that was started
                   //Do something else
    }I am not able to find how to implement the timer functionality. Can someone advice me on what to do? Or if my approach is incorrect, I would like to how something like this is done the right way...

    You shouldn't go around killing threads. Threads should notice themselves when they are not needed and do a "return;" from run(). Other methods of killing threads are unsafe and can lead to corrupted data structures.
    You have a loop of some kind in run()? Put a time check there.
    if (System.currentTimeMillis() >= my_time_to_die) { cleanupWhatever(); return; }

  • Any ideas how to achieve this effect?

    Hi there - I'm wanting to make some one layer stencils, and would love  to replicate this effect, does anyone know a, if it has a name, and b  how you'd go about creating it in photoshop (I'm fine to create the  duotone high contrast image, just want the wavey line effect)Thanks for taking the time out peeps, fingers crossed D

    Thanx for the response, I'll give both of those a try when Im back home laters, the 2nd idea sounds more likely to produce those sort of lines, its an effect I've seen quite often, so was surprised not to see more about it online (which is why I was asking if the technique had a name).
    Its kind of a more messed up version of the lined (which sort of tapers off at each end) effect you get when zoomed in on some TV's (cept in this case is vertical rather than horizontal . . .

  • How to achieve this effect using Adobe Photoshop Touch?

    Hi,
    I'm new to photoshop of all kinds, as you'll soon learn, so I struggle to work out what effect(s), if any, certain images I find online have. At the moment I am trying to work out what effect(s) the images on the below links have, can anyone help? I assume they are the same effects on different images.
    https://pbs.twimg.com/media/B6h7rb_IEAAXR3a.png
    https://pbs.twimg.com/media/B6ipKsDIUAAmMOU.png
    https://pbs.twimg.com/media/B6iRV_XCIAAcHM6.png
    https://pbs.twimg.com/media/B6iQBbWCMAAlCD2.png
    https://pbs.twimg.com/media/B6iOePUCIAAy7tV.png
    Thanks in advance!

    Are you asking about the gradient mask towards the bottom of the images?
    You can try inserting a new layer then use More (looks like an ampersand or "&"; it's the 2nd icon from the upper right) > Gradient. Use a linear gradient. Tap and drag the gradient to where you want it. Tap and drag the end handles on the gradient to adjust where you want the gradient to begin and end.
    Tap the palette icon to change colors, opacity and add/subtract stops.

  • Anyone know how to achieve this effect?

    http://www.superfamous.com/empire/docs/cases/0060.html

    The background for the first image could be done by simply messing around in the Filter Gallery, the round shadow could be just a slightly blurred circle with a reduced opacity. Shading in Photoshop is generaly done with either a 50% gray layer set to Overlay or Soft Light and then painting with a low opacity white/black brush or just using the Dodge/Burn tools

  • How to achieve resize image effect

    Can anyone tell me how to achieve this effect with image resizing in RH, as the images do at the link below? I cannot find the method in the RH Help.
    http://help.adobe.com/en_US/robohelp/robohtml/WS1b49059a33f7772644666e3b1373013a398-8000.h tml

    Hi there
    Sorry, but RoboHelp does not offer a method to achieve this. Unfortunately that's a huge hint that Adobe isn't using RoboHelp to develop those pages.
    If that's the effect you are after, you will need to roll your own with some JavaScript that does a hide and show on text and images.
    One way you might achieve it with a single image would be to insert the image *TWICE* on the page. Then scale one pretty small. Take the full sized image and tuck it inside a Dynamic HTML drop-down. The net effect would be that the user would click to see the full sized image (revealing the DHTML drop-down) and the smaller version would be "pushed" farther down the page.
    Cheers... Rick

  • Is there a tutorial on how to achieve Black/White photos with color details?

    I am newbie with learning photoshop, Is there a tutorial on how to achieve Black/White photos with color details? similiar to this photo?
    thanks

    Type exactly that "black white photos with colour details with Photoshop" when searching online and you will find many examples on how to achieve this effect.
    Examples:
    Photoshop combining color with black and white - A non-destructive method - YouTube
    How to Create Color Splash Effect | Adobe Photoshop cs5 - YouTube

  • Does anyone know how to achieve this in Photoshop? Any help is appreciated, thanks.

    Hello,
    I'm relatively new to Photoshop so if you know how to do this, please explain by telling me where I click. E.g. File>Open
    Does anyone know how I would achieve this exact effect in Photoshop in the image above (without the circular logo)? The 2 light blue type of effects, one at the top of the image, the one at the bottom of the image. I don't know how to achieve this effect, please show me if you know how. I'm using Photoshop CS5.
    I have looked through hundreds of tutorials, none provide me any clue as to how this is achieved.
    Or does anyone know a tutorial on how this effect is achieved?
    Thank you for your help.

    Yes, it would have been faster and more constructive to point out exactly where to find information rather than scold you.
    Check out the Option bar that one gets under the Menu bar. If it is not showing, go to windows>Options.
    More info: http://helpx.adobe.com/photoshop/using/tools.html#using_the_options_bar
    If you select the brush tool, you will notice a flow value, that you can lower; and a Mode drop down list.
    paint tool options: http://helpx.adobe.com/photoshop/using/painting-tools.html#paint_tool_options
    Set the mode to Linear Dodge, then for the next stroke set it to lighten.
    Blending modes explanations with links about their effects http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-77eba.h tml
    Have fun learning Photoshop!

Maybe you are looking for

  • AMD Athlon 64 X2 3800 and K9N SLI Platinum

    I've been reading conflicting reports concerning RAM speed. One says that X2 AMD's will run at 800mhz, and I've read that only FX will run at 800 and vise versa, with this mobo. Anyone running this cpu with RAM at 800mhz????

  • ITunes won't open ; Apple software update error

    When I double click iTunes, the computer thinks briefly (hourglass) then does nothing.  iTunes won't load. QuickTime Player opens fine. But Apple Software Update now gives me a strange error message. Anybody know how to interpret it?  Might it be lin

  • Problem in the Middle name ( F4 help)

    Hi Gurus, I am enhancing the standard F4 help of Personnel Number in PA30.My work is to add Middle name with the Last name - First name tab.I had added the Middle name in the search help PREMN and I had copied the M_PREMN selection method to Z_M_PREM

  • Exception Handling in BizTalk

    what is the best way to handle errors in BizTalk ? We are using web services, databases. Is ESB Exception handling preferred to others ? any better suggestions please ? MBH

  • Build New Application (.app)

    I am running LabVIEW 8.5. I would like to be able to create programs that run on a mac as well as a PC, and this page makes it look like I can do it by just changing the extension from .exe to .app under the target file name, though every time I try