Distort/Zig-Zag Effect

I'm wondering if there are any effects that would distort or zig-zag the last frame of a shot for a "passage of time" emulation. Or, is this something I'd have to do in Motion or After Effects?
Or, could someone recommend other good effects to emulate the passage of time?

In FCP, there is a ripple filter. You need to key the effect, in effect, making a transition. TO do this extend the length of video by about 30 or 45 frames (or what ever you need) and then with the blade tool, cut it. add the Ripple filter.. Key it, and add the cross dissolve transition over it.. Take your incoming video and place it on a track below.... you can also try cutting a piece there and add the ripple effect, and see what effects result. Hope this makes sense.

Similar Messages

  • Extraneous line appears when using Zig Zag effect

    This is the procedure that I'm using:
    1. Create 3 horizontal lines with only a stroke color, no fill. Each line is a different stroke color.
    2. Using the Blend tool, blend the three lines to get a nice linear gradient.
    3. Make an Art Brush from the 3-line blend.
    4. Create a path, for example, just a straight line, and apply the new brush.
    5. Choose Effects > Distort > Zig Zag with Smooth turned on. If the zig zag is shallow and diagonal line appears in the path that does not belong, ruining the effect. The extraneous line will print, so it's not just something that appears on the screen.
    Is there any way to avoid this? If the bumps in the wave are steeper, the diagonal line doesn't appear.

    Hello Jay,
    <br />
    <br />What I did is to use really small circles (3 Circles: Red, Yellow, and Blue) Blend them together with specified steps of 100 (Option+Blend Tool+Click). The amount of steps depends of the distance between each circle.
    <br />
    <br />Then I created the "Art Brush" and apply it to a straight line.
    <br />
    <br />After that, I rotated a copy of the line 45° and a third line another 45° (this will make 90° with 3 lines).
    <br />
    <br />Selected the Vertical and Horizontal lines, then select the "Zig Zag" effect and set the values that you want. The diagonal line I reset the size of the "Zig Zag" effect to very low value.
    <br />
    <br />After that I use "Convert Anchor Point Tool" (Shift+C) to smooth the curve of the blending. To have better results I suggest to use more than 3 lines to make a 90° turn (Just keep in mind that the middle lines should have a "Zig Zag" effect size of low value.
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1fm7KrGLb3VxTRWESwjMVlnShprH" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1fm7KrGLb3VxTRWESwjMVlnShprH_thumb.jpg" border="0" />
    <br />
    <br />But another solution is to first make the Mask of the shape that you want, create a Rectangle with the gradient that you want and use the "Envelope Distorted" ("Envelope Distorted"+ "Make With Warp" + Style "Arc"). Please make sure that you already selected "Distort Linear Gradients" under "Envelope Options"
    <br />And then make the mask.
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1vG69C4xb8gausk6fxfmkMOE4ggtzB" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1vG69C4xb8gausk6fxfmkMOE4ggtzB_thumb.jpg" border="0" />
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1IUevEolmMjG7JkjMAKgf2N4zlb0" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1IUevEolmMjG7JkjMAKgf2N4zlb0_thumb.jpg" border="0" />
    <br />
    <br />I hope this helps!

  • Zig Zag Effect - How is a segment calculated on a circle?

    I have a perfect circle, to which I have applied the Zig Zag effect. I have specified 2 ridges per segment. If I am correct in assuming that a "ridge" is the high, outer part, I end up with 6 ridges on my circle. If I specify 10 redges per segment, I get 22.
    So what does Illustrator consider a segment on a circle, and other than trial and error, how can I get a desired number of ridges?

    Ridges Per Segment means Points Per Segment. Expand Appearance and then count the points.
    Then try it again, but set the Size slider to zero.
    In both cases, you'll have 12 points; the original four and eight added (two per segment).
    You have six "star points" because there is an anchorPoint at each trough and each crest; 6 pairs of trough and crest makes six waves.
    JET

  • Zig zag effect for shading

    Hi there,
    I'm wondering what tools I can use to create this zig-zag effect used for shading in illustrator. Thanks in advance!

    There's no effect to generate that. But you could use brushes to draw those triangle-shaped lines. You could even draw more than one at a time. Or you could use blends.
    THis only one example. You could use art brushes for other forms of strokes:

  • Symmetry Question, Zig-Zag Effect

    I'm working with the Zig-Zag effect and have noticed an anomaly, or not the result I expected. The effect seems to be symmetrical except on one area of the underlying path at one anchor point. Relative and Absolute both yield a non-symmetrical result. Is there a way to get complete symmetry with this effect? I'm working on some snowflakes to import into After Effects and would like for them to be symmetrical.
    Any help is much appreciated. Thanks, Bob

    There are a lot of unobservant designers out there.
    This one came from Wiki:

  • Create a zig zag effect in array

    I have a one dimensional array that holds the pixels values for the image. I currently go through it like so:
    for (int y = 0; y < height-1; y++) {
         offset =y*width;
         for (int x=0; x < width-1; x++) {
              pos = offset + x;
              oldPixel = pixels[pos];
    ...What I now want to do is instead of going in a constant left to right motion is to go in a zig zag motion. This means I want to go left to right on the first line then the second line is from right to left and then back to left to right again for the next line.
    Any ideas on what would be the best way to do this?
    Thanks.

    4fingers wrote:
    Any ideas on what would be the best way to do this?Are you sure about the limits? It usually looks like this,
    for (int y=0; y<height; y++) {
    The above will loop height times.
    Anyway you can introduce a boolean variable called say leftToRight which is controlling the scanning direction,
    boolean leftToRight = true;
    for (int y = 0; y < height; y++) {
       offset =y*width;
       if (leftToRight) { // from left to right
          for (int x=0; x < width; x++) {
             pos = offset + x;
             oldPixel = pixels[pos];
       } else { // from right to left
          for (int x=width-1; x >= 0; x--) {
             pos = offset + x;
             oldPixel = pixels[pos];
       leftToRight = !leftToRight; // change direction

  • Zig zag line following a curve

    how do i make a zig zag line follow a curve and have the 'teeth' be evenly spaced/sized?

    ok, i think i got it nailed..heres how it works for me.
    1.draw the free form line.
    2. apply Roughen Effect, set size at 0, DETAIL value affects the "'teeth' per inch" spacing, POINTS set at-smooth
    3. apply Zig Zag Effect, SIZE affects 'depth/height of 'teeth'", check 'absolute', RIDGES PER SEGMENT-set at 0, POINTS--is checked corner because i need a sharp edge 'tooth'
    thats it..Very cool, thanks to all who answered, this is something i have always been trying to figure out, and now i have an answer..Great resource, i will recommend to my colleagues too!

  • A zig zag box

    hi all
    how do i create a box with on edge zig zagged like the one in this website
    http://www.danielmoir.com/
    any insight would be grateful

    Illustrator - 4 paths. Apply Effect > Distort & Transform > Zig Zag to bottom path. Join path corners. Copy... Paste into Photoshop as Shape layer.

  • Zig Zag Filter Issues

    I am  using Illustrator CS4 on a Macbook Pro with Mountain Lion...on to the issue.
    The first time I used the zig zag filter today I got exactly the effect I wanted:
    Then when edited it to to take it from 15 ridges to 14, this is what happened:
    I didn't change anything but the number of ridges per segement. 
    Subsequently I tried opening a new document (as well as restarting Illustrator) and creating a totally new line and applying the zig zag filter and got the same weird result again.  I compared my appearance panel settings and everything is the same except the appearance of the thumbnail.  I know this must be something easy that I'm overlooking but for the life of me I can't figure out what it is!

    Your path has a fill. You went from an odd number of points making the start and end at the top of the zig zag, to an evwn number of points making the start at the top and the end at the bottom. Illustrator is simply auto-filling an open path.

  • Flash Player Picture goes Zig-zag when scroll bar used in Explorer 11

    Have a Gallery slideshow using Flash Player on our website but when you use the scroll bar it goes Zig-Zag.

    Okay, this is the most interesting problem I've seen today.  It looks like a bug, but we're going to have to reproduce it to fix it.
    The following basics would be very helpful in this regard:
    Read Before Posting: How To Get A Useful Answer To Your Question
    At that point I can get a bug filed for you.

  • Trying to charge ipod and only thing that will show up is a plug with an arrow pointing to a zig zag line

    when i went to charge my ipod it wont charge, so i pluged it into my computer and still the same thing pops up its a plug then an arrow pointing to a zig zag line..

    Not Charge
    - See:       
    iPod touch: Hardware troubleshooting
    - Try another cable
    - Try another charging source
    - Inspect the dock connector for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genus Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Aspire 6920 crashes after booting correctly - screeen zig zags and freezes - any ideas to help plse?

    My aspire 6920 crashes after booting correctly - screen zig zags and freezes - any ideas to help plse? This does not happen in safemode which I am working in now - I have seen a list of dowloadable drivers on the acer site but not at all sure if I should download any. If laptop is really on its way out I will have to let it go - but I would appreciate any advice to extent its life,  Thanks

    Many thanks - relieved that it can be done but I am very unconfident that I can do this - is the display driver the display adapter in Vista? Not at all sure how to install new driver from Acer site - Could I use 'Drivers for free' download - I tried to set up an account with them after seeing their free download on CINET but not able to from 'safe mode' and laptop crashes when I try to do anything ( after about a minute ) in ordinary mode.  Any further advice welcome, thanks

  • Choppy/zig-zagging movement on zoomed-in image?

    1-week-old MacBook Pro - Non-Retina - OSX 10.8.2 / 2.6GHz Intel Core i7 / 8GB RAM / 750GB HD (currently 522GB free space)
    I initially discovered my issue in Photoshop CS6, but just installed the trial of LR 4.2, as well as 4.3RC, to see if the problem persisted, and it does.  My problem is choppy/zig-zagging movement when moving around (two-fingered scrolling using my trackpad) on a zoomed-in image.  Here's a video capture of the problem in Photoshop - and it does the exact same thing in LR.  I did post yesterday in the Photoshop forum but didn't get any advice other than to use a mouse instead of a trackpad...so helpful.  http://www.youtube.com/watch?v=yyRBUiDjavM&feature=youtu.be   The image in this video is just a jpg, quite small in file size.
    I have adjusted every single scrolling/trackpad option in System Preferences, tried enabling and disabling automatic graphics switching in Energy Saver Preferences, changed all Performance Preferences in PS.  I've also installed all Apple and Adobe updates.  I'm only posting here due to the lack of response in the Photoshop forum, and since the problem appeared in LR, as well.  I brought my computer into Apple yesterday as well, and the "genius" that helped me didn't think that the problem was a hardware/Apple issue, but Adobe-related instead.  Have any of you experienced this?  Thanks in advance for any insight you may have!
    (here's my other post, with more detailed information - http://forums.adobe.com/message/4841306)

    I have never seen anything like this at all.  I also would try this with a mouse and see if it is related to the trackpad.  A good resource for help from Adobe is to use the Adobe Customer Care page on Twitter.  Those guys are amazingly fast to respond and have been a super help to me a few times in the past.  If anyone can help, it is them.  https://twitter.com/Adobe_Care

  • I would like to create a wavy line (the zig zag feature is not exactly what I need here) to outline

    I would like to create a wavy line (the zig zag feature is not exactly what I need here) to outline a shape and then fill it with a solid color. Any ideas?
    This is approx what I want; however the undulation needs to be more round and less peaked

    Barbara,
    If you wish to create a gap between the wavy line and the underlying object, you may:
    1) Select the wavy line and Object>Expand Appearance;
    2) In the Appearance palette flyout tick New Stroke, drag it beneath the original stroke and increase the Stroke Weight as desired and change the colour to white.
    If you wish to make the gap transparent, you may:
    3) Select the wavy line and Object>Expand Appearance and Ungroup;
    4) Select the white path and the underlying object and in the Transparency palette flyout tick Make Opacity Mask with Clip unticked and Invert Mask ticked.
    It may be done in other ways, too.

  • Straight lines become zig-zag when viewed in Premiere Elements 11

    I am sure there's an easy answer to my problem but I can't seem to locate it. I am new to video editing and Premiere Elements 11. I have a Sony HDR-CX200 that I use specifically to record tennis matches. I have a recorded a tennis match in 1080i at 60i fps that was transferred from the camcorder to my Window 7 computer using Sony's PlayMemories software which creates a .m2ts file. When I viewed the .m2ts video in both PlayMemories and Windows Media Player the video looked great. I want to be able to view the video in HD on both computer monitor and tv.
    I imported the .m2ts file into Premiere Elements 11 using drag and drop.The file appeared to impotrt without any issue and the still pic looked good. However, when I pressed play the pic broke up. You can easily see this in the tennis lines which start out straight but when played they break into a zig-zag look. I have attached a short video that shows this problem. I want to be able to edit my tennis videos in Premiere because I've already just paid for it and it's suppose to be one of the best video editing programs out there.
    I have looked over discussions of interlacing but don't understand why the pic only looks bad when played in Premiere Elements and looks good in Windows Media  Player and Sony's PlayMemories. I wonder if there is some setting I am overlooking.
    Any help would be greatly appreciated.

    So far, this is a guess.
    Viewing and playback of a video is a medium difficulty task for a computer.  Taking the same file into an editing situation is a high difficulty task.  Editing AVCHD video, is an extra high difficulty task for a computer.  It is doubtful you will work your computer harder doing anything else.
    The real time preview in the monitor during editing can be improved with what is referred to as "real time rendering".  You know when it is necessary when a yellow colored bar shows up above the time line.  When you see it, press Enter and wait a bit. 
    Can you provide more information about the computer and how you got the short video to YouTube?  Also, how did you open the project?  And can you check what the project settings are?  The YouTube looks nothing like what I have uploaded using my two Sony camcorders. 
    I think this is fixable.  Lots of people get great results from PrE11.
    Bill

Maybe you are looking for

  • Can I move pages/reorder page numbers by moving bookmarks?

    I'm using Adobe Acrobat XI Standard and in a different version of Adobe I used to be able to renumber the pages by dragging and moving the bookmarks. I see that I can do this using the thumbnails but I can't see the content well enough in the thumbna

  • Regarding Exact 'Receiver Determination'

    hello all,     i am reltively very much new to XI, a have some knowledge on BC. Thing is that i am able to identify different objects in integration repository, where as in integration builder if i get different messages from different servers wether

  • Permissions on Pages & Workesets?

    Hi All I was wondering if it is possible to set permissions on pages or worksets. So if a user has no permissions to a page then it will not appear in the navigation? Can this be done, and if so does anyone have any information on how to set this up?

  • Get Message ID and namespace from ABAP Mapping

    Hi XI Expert, Please advise how to get the message ID and namespace from ABAP Mapping. Thank You and best Regards Fernand

  • Explanation of a MULTISIM circuit

    I need explanation for multisim14 circuit which measures speed of PM DC motor. Could anyone please explain about the need for the DC source at the speed terminal of the motor. the circuit can be found out in the example ckts of multisim 14 in machine