(How) Create a Laser Beam Effect?

I am working on a project for a client that requires a laser beam. The source will be a laser generator (used fix points in space for the construction of roller coaster track). I need to create a thin red beam (like one of those laser levels you get at the hardware store).
It will go from a point on a lens out of frame or to a point on the factory floor...something like that.
I am still wiggling my way through learning Motion so I grasp the basics...but I am in post and need this effect pretty quick.
Can somebody give me some clues to creating this effect?
Thanks
MS

If you need it really quick you could probably create a version in FCP.
Select a color matte from the Viewer
From the Control tab change the color to red
From the Motion tab twirls down the Opacity and Distort triangles
Change the Aspect ratio to about (-5000) adjust to suit your size needs
Change the opacity to about 70%...adjust to suit your video
And if it's not a straight line you can rotate to the angle you need uner the Basic Motion
At the very least this can give you something to show while you make it look prettier in Motion and it will only take you a few minutes.
Message was edited by: D Gilmore
Oops I forgot to suggest using the Edge Wipe to bring it on

Similar Messages

  • How to create laser sound effects?

    Hey everyone, I have a question for you. I am working on a project and I would really like awesome laser sound effects. I have become pretty good at taking my voice and turning it into nice sound effects, but I cannot seem to take my voice and turn it into cool laser effects.
    This is what I would like to create: http://www.phstudios.com/projects/Audio/Laser.mp3
    If anybody has any ideas at all on what to do, please let me know. At the very least, what can I use as the source sound for this? My voice wont make a nice source for a decent laser.
    Also, I do not have this now, but will Logic Express be better for this?
    Thanks!

    SBfeld wrote:
    Here is my latest version: http://www.phstudios.com/projects/Audio/Laser%20Sound%20Effect_NEW.mp3
    It is a little quiet, but I am using this for a game so there will be other sounds going on at the same time.
    Sounds great. You could always add a bit more reverb, so it drifts off more - or leave as is. Frankly, I think it sounds fine. With all due respect to the lightsaber, the gold standard for the sound of light slashing through space, in reality, lasers don't really make any noise (do they?), so you can really do whatever you want. No one can say "that's not what lasers sound like" because light has no mass, sound, or bitter aftertaste.
    This is good for now. I will get Logic Express if you think it will help at least a little bit? I just dont want to spend $200 on it and not like it any better.
    If all you're trying to do is make a single sound, it's not worth getting Logic for. Also, Logic is a workstation, not an instrument, although it comes with instruments. So, in terms of creating things like laser sounds, I'd think it's less about all the control Logic gives you (although there is that), than it is about working with a really versatile virtual instrument, like the things NI puts out, or Omnisphere, or something along those lines and really versatile effects.
    But that's if you really want to get into it and work on sound effects and music beyond this particular laser. Which maybe you do.
    But if it's all about this laser, I'd just do what you're doing, or if you were going to purchase something, I'd look for a sound library (e.g. http://www.cycling74.com/products/cycles), find the sound you're looking for, and then tweak it.
    But... I wouldn't get Logic just to gussy up that one sound.
    Good luck with T.D.!

  • How can I create a video with effects using my ipad?

    How can I create a video with effects (sepia, B&W, Negative, oval or any other shape borders) using my ipad?  I would Like to keep a higher res and also be able to shrink it down to email or send in a MMS. Or should I just upload it to my PC and mess with it there? Some of the apps I have are very easy to use compared to the learning curve needed for video editing software.
    Thanks

    Thats the Problem . . . how many apps do I have to try until I find the one I want? I noticed a few will render the video thus losing its original size. When I went to edit it more in iMovie the video was smaller--not good. And what software do you suggest, Templeton, for the PC? I love the apps because they are easy. I dont have hours to mess around on a software to figure out if its something I want. Im looking for simplicity. Maybe Ill get more into it later. I just want to record simple video of my playing the guitar for self analysis and create a short video for family and friends.
    Apps:
    iMovie
    CinemaFXV
    VideoFix
    Cartoonatic
    Video illusion
    VidEditor
    Software:
    Windows Movie maker (wont accept .mov files)
    After Effects (Too little time, so much to learn)
    Wondershare (Very easy but little choices)
    VideoPad (Again. Few choices)

  • How do i create this kind of effect

    Hi i was just wondering if anyone knows of any tutorials or anything on creating this kind of effect. Do you think it was done in after effects?
    Its the 3d camera pan at around the 2:40 mark of the video.
    http://www.coreonlinemagazine.com/index.php/aaron-hadlows-new-movie-calibrate/336
    Thanks

    One more thing, guys. I looked through most of the effects he used and I can explain how did it, except how on earth did he pull this off?
    Take a look, I isolated them (hope these links work):
    http://www.mediafire.com/?2mgyymnbb2m
    http://www.mediafire.com/?z1mnyanwgmn

  • How can I create a shadow text effect?

    How can I add a blur effect to text on a BufferedImage. I am trying to create a shadow text effect. Here is what I have currently.
    BufferedImage image = new BufferedImage(500,120,BufferedImage.TYPE_INT_RGB);
    Rectangle2D Rectangle = new Rectangle2D.Double(0,0,500,120);
    Graphics graphics = image.getGraphics();
    Graphics2D g2d = (Graphics2D) graphics;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g2d.setPaint(Color.white);
    g2d.fill(Rectangle);
    g2d.draw(Rectangle);
    //Shadow text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    shadow = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.lightGray);
    shadow.draw(g2d, 13, 103);
    //Main text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    text = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);
    I found a blur effect but it affect the whole image not just the shadow. Here is an example.
    BufferedImage image = new BufferedImage(500,120,BufferedImage.TYPE_INT_RGB);
    Rectangle2D Rectangle = new Rectangle2D.Double(0,0,500,120);
    Graphics graphics = image.getGraphics();
    Graphics2D g2d = (Graphics2D) graphics;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g2d.setPaint(Color.white);
    g2d.fill(Rectangle);
    g2d.draw(Rectangle);
    //Shadow text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    shadow = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.lightGray);
    shadow.draw(g2d, 13, 103);
    Blur filter
    float ninth = 1.0f / 9.0f;
    float[] kernel = {ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth};
    biop = new ConvolveOp(new Kernel(3, 3, kernel));
    op = (BufferedImageOp) biop;
    image = op.filter(image,null);
    //Main text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    text = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);

    I thought I answered that question?!
    In your code above, watch out for statement:
    image = op.filter(image,null); The resulted buffered image is new, so you are updating the reference held in variable image.
    Unfortunately variable g2d is still refering to a graphics object back by the original image, so:
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);renders on the first buffered image, not the second.
    Here's my code again, touched up a bit.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.io.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class ShadowText {
        public static void main(String[] args) throws IOException {
            int w = 500;
            int h = 120;
            Font font = new Font("Lucida Bright", Font.ITALIC, 72);
            String text = "Shadow Text";
            BufferedImage image = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
            Graphics2D g = image.createGraphics();
            adjustGraphics(g);
            //start off all white:
            g.setPaint(Color.WHITE);
            g.fillRect(0, 0, w, h);
            //draw "shadow" text: to be blurred next
            TextLayout textLayout = new TextLayout(text, font, g.getFontRenderContext());
            g.setPaint(new Color(128,128,255));
            textLayout.draw(g, 15, 105);
            g.dispose();
            //blur the shadow: result is sorted in image2
            float ninth = 1.0f / 9.0f;
            float[] kernel = {ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth};
            ConvolveOp op = new ConvolveOp(new Kernel(3, 3, kernel), ConvolveOp.EDGE_NO_OP, null);
            BufferedImage image2 = op.filter(image,null);
            //write "original" text on top of shadow
            Graphics2D g2 = image2.createGraphics();
            adjustGraphics(g2);
            g2.setPaint(Color.BLACK);
            textLayout.draw(g2, 10, 100);
            //save to file
            ImageIO.write(image2, "jpeg", new File("ShadowText.jpg"));
            //show me the result
            display(image2);
        static void adjustGraphics(Graphics2D g) {
            g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
            g.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_ON);
        static void display(BufferedImage im) {
            JFrame f = new JFrame("ShadowText");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JLabel(new ImageIcon(im)));
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • How do I create a sparkle star effect using pse 10?

    How do I create a sparkle star effect in pse 10.

    There are also brushes included in PSE10:
    The effect on the photo left is the Assorted Brushes...Crosshatch 4 (#48) clicked once with the default settings, then changed the angle to 56d and clicked again.
    The effect on the photo right is the Assorted Brushes...Starburst Large with its size increased to 119pixels.  Without moving the cursor, increase the opacity of the effect by clicking again....
    Ken

  • How to create Hulk, Demon, Alien Effects In After Effects

    Hello Every-one.
    How  can I create Hulk, Demon, Alien Effects,  for the face in After Effects.
    Thanks
    Simon

    This Video Co-Pilot tutorial is a good place to start,

  • How to create a "fast forward" effect?

    Hi there,
    I want to create a fast forward effect of a section of video that I have. I have speeded up the section to 2000% normal speed, and added a noise effect. That looks ok.
    Now, ideally, I would like to perfect the effect by adding the classic ">>" fast forward image, flashing on and off, and also by having the audio sounding sped up also.
    Can somebody please offer some guidance on how to go about that?
    Thanks very much guys,
    Mike

    Try here:
    http://discussions.apple.com/thread.jspa?messageID=5607076&#5607076
    It's for rewind but the idea is there.
    Al

  • How To Create a Drunken POV Effect?

    hello,
    i am making a point-of-view 3d video and i would like to know about how i could make an effect that will show that the one that we are seeing through his eyes, is drunk.
    i am searching for something that will show blurry, slow rem and generally, something to show you are totally drunk .
    thanks, a lot....!!!
    p.s. no matter what the version of your after effects, tell me..

    As David said, this is a very subjective matter and it really depends on how you want it to look and feel.  Do you want it to look slapstick like a silent film or serious?  Perhaps some examples might be useful in illustrating what you want.  In the meantine, I'll post the ones that popped into my head.
    If you're after slapstick, then Edwin S. Porter's "Dream of a Rarebit Fiend" from 1906 is a gem of early cinema that uses some very interesting in-camera multi-exposure effects to create a drunken feel.  This could be re-created very easily in After Effects, especially the POV/Long Shot that happens at approximately 1:16.
    You could do this by just simply overlaying two wobbling camera shots or using the wiggler plug-in in After Effects like so:
    Or, if you're going for more serious look, then I would suggest watching Gaspar Noe's film, "Enter the Void."  The entire movie is a floating POV that spans multiple characters, spaces and time.  It also depicts a lot of substance abuse, including but not limited to alcohol.  One of the things that I think adds to the uncanny realness of the film are the sporadic eye blinks that occur throughout the movie.  This could be recreated by quickly animating 2 black solids over a couple frames.  You could also speed this up or slow it down depending on your character's drunkness.
    Also, you said you're making a 3D video.  Are you talking about stereoscopic 3D or are you just making 3D layers in After Effects?  If it's stereoscopic 3D then playing with the interocular distance and the camera convergence might yield some interesting results, but I'm not sure it would seem drunken.
    Otherwise, I'd just experiment with the different effects mentioned earlier.  Again, depending on what you're after, I'd also add CC Wide Time to the list.

  • How to create the same title effects as in this video?

    How do I create the same title effects as in this video?
    By titles I mean the ones that say Exterior Front, Exterior Back, Foyer, etc...
    http://www.youtube.com/watch?v=TEKcasQAuaY
    I don't know how to have the black bar slide in, then have the word slide in, then have both slide out.
    I'm totally new at Premiere.

    It didn't appear that the words were sliding in. Rather, they were being wiped on.
    Information on using the Titler is here.
    Since you're new to Premiere Pro, you should begin at the beginning and work through the basic learning materials for Premiere Pro.

  • How do you create a mirror image effect on imovie 2014?

    All the tutorials online show how to create a mirror image effect on imovie 2011, however there are none showing how to do it on the current version.

    You can't do this in iPhoto.
    In order of price here are some suggestions:
    Preview, already on your Mac.
    Seashore (free)
    _[The Gimp|http://www.gimp.org/macintosh>_ also free
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    [Pixelmator|http://www.pixelmator.com> ($60 approx.)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Regards
    TD

  • How do I create a similar line effect to this:

    I'm trying to figure out the best way to create a similar line effect to this in illustrator, any ideas?
    Thank you!

    Draw a black spikes (vertically), option drag a copy, make a blend specified steps.
    Copy paste in front, rotate 180 degrees, adjust position
    Draw a circle on top, use as a mask.
    Rotate all about 30 degrees.

  • How can I create a photo shutter effect in FCP?

    How do I make an effect like a photo is being take during footage playback. I've done the effect before but when the picture "blinks" I want to see a white flash instead of a black one. Is there a way to change the color to white?

    If I'm understanding correctly, use "Dip to color dissolve" with adjustments to the percentage of opacity at the start/end and threshold should do it.
    Change the color from default black to white and adjust the length of the transition to simulate the quickness of the flash. Split the clip where you want the effect and add transition, set to 'edit on center'.
    Hope it helps

  • Creating an effect - sort of Star Trek-like tractor beam effect

    I'm trying to come up with a way to make a particle effect that sort of looks like a tractor beam effect from Star Trek.
    I want a line or thin rectangle to be the particle. The particle itself wouldn't spread out or have any speed itself, but I'd like one end of each particle to all be at the same point, but the opposite end spread out in something like a 10-15 degree arc. Each particle would have a very short life....only .5 to .75 seconds each.....to give a feathery random  energy beam-like effect with a origin at one point but spreading out to cover an area.
    Does that description make any sense? Is there a way to do this?

    Do you mean something like this?
    Andy

  • How do I create a 'write on' effect?

    Hello,
    Say I had an image of some text that spelt 'TOM' - is there anyway I could animate a mask that makes it look like the image is written on?
    My logic is coming from doing the same thing in after effects but I'm aware edge animate is very different.
    Please let me know if there are anyways of creating a 'write on' effect.
    Thanks!
    Tom

    Hello Kelly,
    Here is a method that I use:
    First place a photo of a wall or floor and use "Live Trace" default
    You will end up with a black and white texture like this:
    Then Select all the white areas and delete them. If you have a lot of black texture, feel free to delete as much as you want. You can always copy and paste pieces wherever you want.
    Now Place your design on top of the texture you have created. Then send the design to the back.
    The last step is to select the outlined text and the compound shapes and apply "Subtract From Shape Area" with Pathfinder. Please note that this option does not work on CS3 from the menu (one of the hundred of bugs of this lousy version), so please use the Pathfinder Window.
    And this is the end result:
    This was a quick sample, but I am sure you can do something a lot better than this sample. I think the difficult part is to get a good photo. Maybe next time I will use a damaged concrete floor or wall photo.
    I hope this helps!

Maybe you are looking for

  • Purchase requisition aginst purchase order and mat.dc.no.

    Hi experts, i want to develop a  report PR_NO  ITEM_NO  QUANT PO_NO  ITEM  QANTY MAT.DOC.NO I USED EBAN EKPO AND MSEG TABLE but there is no relation between EBAN AND EKPO.(also EKBE ) how should i fetch the data PRNO AGAINST PO. In my comany there is

  • JAXB - validation problem with regexp bound int type

    Hello everyone, I have a simpleType defined in my schema as follows: <xs:simpleType name="BasketRetentionType"> <xs:restriction base="xs:int"> <xs:totalDigits value="10"/> <xs:pattern value="(0|[1-9][0-9]*)"/> </xs:restriction> </xs:simpleType> '020'

  • Hr schema employee table

    - jdeve11.1.1.5.0 - adfbc. i drag and drop the employeevo into panel formlayout. by using create insert data are inserting but not commiting. reason i found out. i cant manually insert data into the table in my hr. following error throw aways i get t

  • Secure OSB Service with LDAP

    Hi Friends, Greetings! Is there a way to secure an OSB service so that user will be able to access it only if they pass their AD/LDAP userid and password? Note: I know I can add servie accounts. However I want to avoid adding a guge number of users/s

  • Saving Image to server from stand alone SWF using PHP

    Hi all! I´m having some problems completing the following task. I built an information terminal for the shop of a friend of mine which uns as fullscreen application. On this terminal the swf file is running as a stand alone file by unsing the flash p