How would i edit a rewind effect into my audio

hi i am editing a mix for a gymnastics team. they want a rewind effect in the audio. i was thinking maybe for the audio to sound like it powers down and then rewinds to a point powers down again and start back up again. hopefully that makes scene. I dont really know how to go about this. i have soundtrack pro and garage band is there anyways i could put this off in the software i have. if so how would i go about it. i havent ever really edited audio like this before.
Thanks
-Sean-

Hi,
do you remember the widgets of Adobe Exchange? There you will find this nice option:
Hans-G.

Similar Messages

  • How to import original clips edited in After Effects into Adobe Premiere, without the After Effects

    What is the quickest and easiest way to bring clips that were edited within after effects into adobe premiere? I just want the original clip as it is cut, without any of the after effects manipulation. I am trying to gather the cuts of a green screen project together that was compiled and edited within Adobe After Effects, so they can be rekeyed. I want to detach all effects work, and just have a straight green screen cut of the original files. Each cut though, is its own compilation. Simply importing to a new sequence doesn't seem to be the answer because I first have to uncheck many effects to find the original clip buried beneath layers of mattes and various effects. I have probably 400 different cuts, and currently my workflow is super slow just searching for the original clip in after effects, looking for the time code, then matching the original clip and timecode into Premiere. Is there a faster an easier workflow?
    Thank you

    I just want the original clip as it is cut, without any of the after effects manipulation.
    Then you need the original clip.
    my workflow is super slow just searching for the original clip in after effects
    It's what you may need to do, though. Unless you know exactly where the clips are on the hard drive.

  • How would i edit an exsisting program so it has......

    How would i edit an exsisting java program so it has a sort of automate "marco" feature inside of it? Can any one give me any exsamples of some code that might help me?

    ok i have decompiled this game runescape "that is programmed in java" well i have at least decompiled the internet client thingy. and i want to create a macro for the game. i just need some code to insert into the program then i can recompile it so i can play/cheat the game..... was that clear enough?

  • How would you edit 4k in Premiere Pro CC and export in 2.5k and 1080p (all within premiere pro, is it possible?), how would you edit 4k in Premiere Pro CC and export in 2.5k and 1080p (all within premiere pro, is it possible?)

    how would you edit 4k in Premiere Pro CC and export in 2.5k and 1080p (all within premiere pro, is it possible?), how would you edit 4k in Premiere Pro CC and export in 2.5k and 1080p (all within premiere pro, is it possible?)

    Edit 4K and export what ever you want from AME

  • How do you move text edited in After Effects into Final Cut Pro?

    I edited text in After Effects and want to use it at the start of my movie which is in Final Cut Pro.
    How do I export the After Effects editted text into FCP?
    I have FCP 7
    Thankyou

    I suppose the way to do it is to export to Quicktime and import that into FCP X.
    Use ProRes 4444 codec in order to preserve transparency (alpha channel).

  • How would you realize a "blinking"-Effect

    The question narrows down to : Which is the best solution to trigger each 0,5 seconds an event (on the JavaFX thread) ?
    I could do this with a TimelineAnimation or with a Task<Void>, the problem withthe Task is that I have to update the UI with Platform.runLater() each time which is an impact on the overall perfomance. On the otherhand the TimerLineAnimation is useful to update a property and I do not think that it is the approriate method to realize a blink effect.
    How would you do this ?
    E.G. I have a circle. This shape is supposed to change its Color every 0,5 seconds (And there can be many of this circles..)

    I would use some kind of Transition, not because of any performance consideration but merely because it will keep your code cleaner. Used properly, a Task with Platform.runLater(...) to update the UI will be as efficient as anything else, but it can be a bit tricky to get it right (and using Transitions, you delegate the job of getting the code right to the JavaFX team, who are probably better at this kind of thing than either you or I).
    The Timeline will actually animate the transition between property values. Almost anything you want to do can be expressed as a change in property; your example of changing the color of a Circle simply involves changing the value of the fillProperty. So using a Timeline will fade one color into another.
    If you want a "traditional" blink, you could two PauseTransitions with the onFinished event set to change the color.
    This compares the two approaches:
    import javafx.animation.Animation;
    import javafx.animation.KeyFrame;
    import javafx.animation.KeyValue;
    import javafx.animation.PauseTransition;
    import javafx.animation.SequentialTransition;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.paint.Paint;
    import javafx.scene.shape.Circle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class BlinkingCircles extends Application {
         @Override
         public void start(Stage primaryStage) {
           final HBox root = new HBox();
              final Group faders = new Group();
              final Color blue = new Color(0, 0, 1.0, 0.3);
              final Color red = new Color(1.0, 0, 0, 0.3);
              final ObjectProperty<Paint> colorFader = new SimpleObjectProperty<Paint>(blue);
              for (int i=0; i<20; i++) {
                faders.getChildren().add(createCircle(colorFader));
              KeyValue blueKV = new KeyValue(colorFader, blue);
              KeyValue redKV = new KeyValue(colorFader, red);
              KeyFrame blueKF = new KeyFrame(new Duration(1000), blueKV);
              KeyFrame redKF = new KeyFrame(new Duration(500), redKV);
              Timeline fadeTimeline = new Timeline(redKF, blueKF);
              fadeTimeline.setCycleCount(Animation.INDEFINITE);
              fadeTimeline.play();
              final Group blinkers = new Group();
              final ObjectProperty<Paint> colorBlinker = new SimpleObjectProperty<Paint>(blue);
              for (int i=0; i<20; i++) {
                blinkers.getChildren().add(createCircle(colorBlinker));
              PauseTransition changeToRed = createPauseTransition(colorBlinker, red);
              PauseTransition changeToBlue = createPauseTransition(colorBlinker, blue);
              SequentialTransition blinkTransition = new SequentialTransition(changeToRed, changeToBlue);
              blinkTransition.setCycleCount(Animation.INDEFINITE);
              blinkTransition.play();
              root.getChildren().addAll(faders, blinkers);
              Scene scene = new Scene(root, 640, 400);
              primaryStage.setScene(scene);
              primaryStage.show();
         private Circle createCircle(ObjectProperty<Paint> color) {
           Circle c = new Circle(Math.random()*300, Math.random()*300, 20);
           c.fillProperty().bind(color);
           c.setStroke(Color.BLACK);
           return c ;
         private PauseTransition createPauseTransition(final ObjectProperty<Paint> colorBlinker, final Color color) {
           PauseTransition changeColor = new PauseTransition(new Duration(500));
              changeColor.setOnFinished(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent evt) {
                  colorBlinker.set(color);
              return changeColor ;
         public static void main(String[] args) {
              launch(args);
    }

  • How would I re-create this effect? (physical paper cutouts made to look animated)

    Here is a video of the effect I am trying to replicate: http://www.youtube.com/watch?v=PGvNHFRIO08
    They use physical paper cut-outs (you can see the shadows and outlines in a few frames) but it almost seems animated -- the first time I watched it I thought they were green-screening the background.
    How would I get rid of the outlines around the cut out pieces of paper? I'm guessing it would involve increasing the contrast of the background dramatically, but not the hands?
    Just looking for ideas on how to get started. Thanks!

    Shooternz, you know what this is like to me? Lets say we both have guitars and you play some eric clapton thing I love..and I watch what you do and hear it, and love it, and for the LIFE OF ME can't DO IT MYSELF !!!!  So I am hanging out with you ( friend ) and you show me and even go " SLOWER" with left hand to show me what you're doing with fingers on frets, etc...and I little by little follow you along and litte by little get better and better at mimicking what you are doing...but also get into it re: my timing etc...
    I WOULD BE LAUGHING during this whole thing...
    1) cause I love the product and wanna make it
    2) cause I know you're helping me
    3) cause I know I'm an idiot trying to learn something new ...
    4) cause I love those who are willing to teach
    5) cause they love laughter too...
    Anyway, that's how I approach most everything I'm sharing with people...
    unless I get ugly ...I'm working on that aspect

  • How do I edit a paragraph typed into one of my pdf contracts sent from someone?

    How do I edit a paragraph that has been typed into one of my pdf contract drafts from someone else?

    You can purchase Acrobat or you can install it as a Trial for thirty days
    Trial is available at below mentioned link
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=ap
    you need to create an adobe ID if you do not have one.
    ~Pranav

  • How to put edited AE clips back into PPro? (CS5.5)

    Okay, so, here it goes.
    I edit my main footage in Premiere Pro. I recently purchased a denoising software that only is compatible with After Effects, so I have been using the denoiser plugin in After Effects. After I edit my basic video cut in Premiere, I select all of the clips (including audio) in the timeline, and open it in a new AE comp. After it has been opened, I do all of my major video touch ups in AE (such as denoising). Now, when I try to export the project as a Premiere Pro (PP) project and open it in Premiere, it doesn't load the project. It's just an empty sequence. That is not a big deal though, because I tried something else. I tried linking the AE composition from AE to PP which works, but it is very slow and precomposes all of the individual clips into one video clip.
    So, just to go over it again, this is what I did: Cut clips in PP > Selected all clips in the timeline of PP and opened them in a new AE comp > Edited the individual clips inside the AE comp w/ effects that are not supported by PP (only AE supports the denoiser effect) > opened the edited AE comp in PP > then the comp came up as a precomposed video clip instead of individual clips.
    So, my question is, how do I get the comp from AE to stay as individual clips when I open it in PP in case I need to adjust something? Is there a way to do this? Or should I just do the denoise effect very last?
    Two other things:
    (1) I noticed that it is extremely slow in PP to render parts of an AE comp... is it just because of the added effects?
    (2) I transcode my video footage to ProRes 422 before I bring them into PP. Once I bring the clips into AE and then back into PP (if I figure out how to), will the clips still be the same ProRes codec? I need them to be the same codec due to color grading and effects later on in post.
    Thank you SO MUCH if you can answer this! ANY help is appreciated! I explained this pretty much as good as I can, so if you don't understand my question, just ask, and I'll try to give you more info. Thanks!!

    I select all of the clips (including audio) in the timeline, and open it in a new AE comp.
    That's where you messed up.  Instead, right click on each clip you want to fix, and choose Replace with After Effects Composition.  Then redo your effects.

  • How would you edit a blurry video with such lightning?

    Hello there! It's my first video and I really need your help guys. I have no idea how to adjust this to look less blurry, the lighting was bad so nothing works as I would want to. Saturation just makes it more blurry, same for contrast. Sharp doesn't work at all. I've already tried to mess with three way color corrector but I have no idea which to choose, and anyway it won't remove the blurry effect for sure. Just give me some combinations, I hope someone already made a room video look nice. The problem was the camera - it was recorded with my phone, so that's probably the main factor. I work in CS6, and it's an amazing program, props to all of you that know it well!

    Have you tried the Make Beuatiful Filter?  Just kidding!  First of all if you want good video, don't use your phone.  Video production is not cheap and you can't cut corners if you want it to look good.  Okay enough of the lecture. 
    You could try shriking the video, that may make it look less blurry.  If you shot in in HD, resize it down to an SD size.  Not the best for full screen playback, but mayby good enough for youtube.
    Look into renting a small video package for your next shoot.  You will be glad you did.
    Good luck.

  • How do you edit-in a "stop" into a screen recording and then insert a "button" to link to a document

    Ok, so I am working on my first Captivate project.  So far so good (mostly).  I want to interupt a screen capture recording that I now have.  Currently, it captures a pdf screen and an audio narration.  I want to have a button appear at a certain time within the recording were the user can click it and be taken to another pdf document in which the user will have to read the document and take a quiz on the content.  This action of clicking the button will stop the recorded screen narration and allow unlimited time to read the linked document and complete the quiz.  Upon completing the quiz, the user will click the continue button and be returned to the screen capture recording where they left off.  Sooooooo........How do I do this??????????
    Will I have to split the screen capture recording into two slides in order to make it stop when the button appears?
    Will I have to, or can I, insert a branching slide function at any point in my screen capture recording?
    Is it best to connect the button directly to the pdf file or to a url on my intranet?
    All help will be much appreciated!
    Thanks,
    John

    Too bad, you should know that full motion is mostly not the best choice in Captivate, because not only the filesize is much larger, but editing is a lot more difficult than with the, for CP, more natural capturing mode Automatic (or Custom) where static slides are produced whenever possible and only will be reverted to FMR when necessary.
    Between the editing possibilities for FMR you have splitting, which could help you.
    Or else, try to view the FMR by using Preview slide (F3 or the play icon on the Timeline, or space bar). Pause on the place where you want to have a pausing. The playhead in CP5.5 will remain on that frame, you can see at which second it is placed. Now insert a button, that will be placed with the start of its timeline at the position of the playhead. If this is really the place where you want to pause, you have to change the timing of that button so that the pausing point is exactly at that place. You can move the button timeline with the mouse, or perhaps better by using shortcut keys: arrow keys (left/right) will move 0,1sec in that direction, CTRL-arrow 1 sec. You can check, edit ths Pause at also in the Timing accordion of the Properties panel of the button.
    You will have to insert as action for that button Open URL or File.
    Lilybiri

  • How do I edit a converted pdf into word document?

    i just converted a pdf to word and would like to edit it. How?

    Sara:
    I have upgraded to PDF Pack & spoken with Adobe today.
    Thank you very much for your help!
    Deborah Yarbrough
    T: 520.529.7292
    M: 520.906.7990
    Email:  <mailto:[email protected]>
    <mailto:[email protected]> [email protected]

  • How would I edit and burn HD 3D home movies at 1080i/60i to a Blu ray player on an iMac?

    I own a Sony HDR-TD30V HD 3D Camcorder and would like to edit and burn my 3D home videos (1080i/60i) to a Blu ray capable of playing on a home blu ray player or PS3 using iMac software.

    Well, you won't be doing 3D with Final Cut Express!  (With FCE you could edit 2D filmed with your camcorder @ 1080i60 but not 3D.)
    For that matter, Final Cut Pro X doesn't even handle 3D out of the box.  But there is a third-party plugin called Stereo 3D Toolbox that works with Final Cut Pro X. 
    As for BluRay, you will need an external BluRay burner and software that supports it ... like Roxio Toast Titanium.
    Also, I noticed that your profile says you are using OS X 10.6.8 - I strongly suggest upgrading to 10.7 (Lion) or 10.8 (Mt. Lion) before investing in FCP-X and other video software.

  • HT4865 If a contact is intentionally deleted from an iphone, why/how would it reappear later on back into the contacts?

    If a contact is intentionally deleted from an iphone, how could/would it reappear later on?

    On a Mac, PhoneView is one option (I've been happily using for a year or two). TouchCopy is another (have not heard anything negative about it).
    You'll only get back the low-res versions that were downsized when synced to the phone, but better than nothing.

  • How to reformat a Video podcast file into an audio one?

    Is there a way for me to transform a video podcast to an audio one so I can play it on my shuffle? Do I need special software to do it?

    my answer might be a litte bit late but http://vixy.net/ is a web based service that does exactly that. Simple to use!
    Willy

Maybe you are looking for

  • Can't move or copy files in Finder!

    I installed the latest software update, something to do with Airport I think, and since then I am not able to move documents into sub folders, or copy items from a CD to the desktop or external drives. My OS is up to date, I've repaired permissions,

  • How do I get a movie to sync to Apple tv?

    I recently downloaded "Limitless".  It shows in my iTunes but it will not sync to my Appletv.  The error message that I get is that it "cannot be played on this Appletv".  Has anyone else had this problem and how do I fix it?

  • How can I delte all stored emails from my firefox web-browser

    I have some of my friends who use my laptop and as I'm trying to sign in to my facebook account, I found their emails. This is really piss me off, I tried to search for answer of how to delete stored emails and I couldn't find an answer. I appreciate

  • In Finder since 10.8.3 – delay when quickly moving items around

    I think this is new since the Finder of OS X 10.8.3. It's kind of hard to explain, but here goes: If one triest to move items around quickly after each other, there's like a second delay before you can do the second "grab". Like this: click and drag

  • How can I make Acrobat stop shrinking scanned documents??

    Very fr ustrated in the fact that every time I scan a document for various purposes, the end result has been shrunk so that only certain areas of the document are seen in the .pdf file.  It seems to happen especially with documents with alot of lines