How can i slide a sound track one frame at a time in Pre 10

i do a lot of music videos where i record audio separtly from the video and then sync them and i have a lot of trouble getting them in sync, does anyone have any good tricks to do this? also, can i move said sound track one frame at a time in either direction to help get these tracks to sync up?
Thanks

If you zoom to the max, and watch that little TimeCode box (it pops up, when you begin dragging), just look at the last two digits, as those are the Frames. Even with my clumsy hands and fingers, I can nail the displacement to Frame-accurate standards.
Now, some other NLE's go a step further, in that when the Clip is Selected, one can nudge it along, with modifier keys and the Left-Right Cursor keys. I do not think that has been added to PrE 10, but would be a great Feature Request.
Good luck,
Hunt
[Edit] Well shut my mouth! After you Select the Clip (unlinking with Alt+click, if muxed), just hold down the Alt key, while hitting the Left-Rigt Cursor keys!!!! Forget that Feature Request.
Message was edited by: Bill Hunt

Similar Messages

  • How can I talk with more then one person at a time?

    How can I talk with more then one person at a time? With Faxe time? Is thier software needed to do this or can it be done with the basic package?

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.
    If you want the drop-down arrow you can add it with the Back/forward dropmarker add-on - https://addons.mozilla.org/firefox/addon/backforward-dropmarker

  • How can I show 2 pictures in one frame either in an IPhoto '11 slide show or IMovie '11

    I'm trying to put two pictures side by side in one frame of either a slideshow or movie (for my brother's wedding, a picture of him and his fiance at the same time in their lives growing up)-how can I do this?  I have tried PIP in IMovie, but I'm not having much luck.

    Bizarro:
    Welcome to the Apple Discussions. JMEH has suggested the best way to get what you want. Create a blank 8.5 x 11 canvas at the dpi size that your camera produces. Mine Canon gives me 180 dpi. Then, using PS as iPhoto's primary editor, crop the file to the size you want and drag it into the open blank canvas and position it where you want. Just make sure in PS that the dpi is set to 180 (or whatever you choose to use). Once dragged into the blank canvas the changes to the file, i.e. crop, does not have to be saved and you can close that file without making any permanent changes. Do that for each of the photos you want on the blank canvas, arrange and print. When done you can close the canvas without saving for use the next time.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • When queueing several dl's, how can I get it to dl one item at a time instead of several at once?

    My internet connection is fairly slow. When I start more than one download at a time, they appear to stall. When I start one at a time, waiting for the previous to finish, the total time is much less.
    How do I stack up several requests at once and have FF process one at a time while I go have tea?

    You will have to use an external download manager that add such a feature.
    * http://plugindoc.mozdev.org/windows4.html
    You can use the FlashGot extension to integrate an external Download Manager in Firefox.
    * FlashGot: https://addons.mozilla.org/firefox/addon/flashgot/

  • How can I pass variable's from one frame to other

    //This is the first frame where the value in the TextField
    //tf1 and tf2 are to be passed to 2nd Frame
    import java.awt.*;
    import java.awt.event.*;
    public class del extends Frame implements ItemListener,ActionListener
    public Panel p,p1,p2;
    public Button b,n;
    public Label l1,l2;
    public TextField tf1,tf2;
    public del()
    setLayout(new FlowLayout(FlowLayout.LEFT));
    Panel p=new Panel();
    n=new Button("Submit");
    p.add(n);
    add(p);
    l1=new Label(" Enter the Temperature : ");
    tf1=new TextField(5);
    p.add(l1);
    p.add(tf1);
    add("South",p);
    l2=new Label(" Enter the Compund ");
    tf2=new TextField("N-OCTANE",15);
    p1=new Panel();
    p1.add(l2);
    p1.add(tf2);
    add("South",p1);
    setSize(600,700);
    setVisible(true);
    public void itemStateChanged(ItemEvent ie)
    repaint();
    public void actionPerformed(ActionEvent a)
    if(a.getSource()==n)
    this.setVisible(false);
    new Finalput1();
    repaint();
    public static void main(String[]args)
    del d=new del();
    //2nd Frame which will appear on clicking submit button
    import java.awt.*;
    class del1 extends Frame
    public static double T;//value in 1st text field has to be stored in variable T
    String compd=" ";//value in 2nd textField has to be stored in this string
    TextField tf;
    public del1()
    setLayout(new FlowLayout());
    setSize(800,700);
    setVisible(true);
    public void paint(Graphics g)
    g.drawString(" INPUT DATA : - ",30,120);
    g.setColor(Color.black);
    g.drawString(" Component Name ="+compd,20,160);
    g.drawString(" Temperature of the Mixture ="+T,30,250);
    public static void main(String[]args)
    new del1();
    Pls help me.
    I will be happy if anyone help's me!

    Both your classes seem to be independent applications. (they are public, and they have their public static void main)
    Is this your intention? If so, your question is how to pass data from one application to another. That can be done in many ways, and it is a complicated issue. (if one application wants to pass data to another, you first have to find the other one, and if it isnt running you might want to start... - lots of things to think about.)
    If what you want to do is simply to pass data from one Frame to another, the matter is quite more simple.
    Here is a sample:
    import java.awt.event.*;
    import java.awt.*;
    public class F1 extends Frame implements ActionListener
    private F2 theOtherFrame;
    public F1()
    Button b;
    b=new Button("Action");
    b.addActionListener(this);
    add(b);
    setSize(100,100);
    setVisible(true);
    public void actionPerformed(ActionEvent e)
    if (theOtherFrame == null)
         theOtherFrame = new F2();
         theOtherFrame.setSize(100, 100);
    theOtherFrame.setSomeData("Her you have som data");
    theOtherFrame.setVisible(true);
    public static void main(String[] args)
    new F1();
    class F2 extends Frame
    private String strData;
    private Label lab;
    public void setSomeData(String str)
    lab.setText(str);
    repaint();
    public F2()
    lab = new Label();
    add(lab);

  • How can I copy a sound track into photoshop

    In the past I thought I put the soundtrack as a AIF file in Soundtrack Pro and then copied and pasted it into a photoshop window, but that doesn't seem to work now.

    Roger Longley wrote:
    In the past I thought I put the soundtrack as a AIF file in Soundtrack Pro and then copied and pasted it into a photoshop window, but that doesn't seem to work now.
    Roger Longley wrote:
    What I want is an image of the waveform.
    Photoshop does not have the ability to analyse audio files, are you sure you know how you did this in the past? You must do that in an audio editor, like, oh, Soundtrack. You'd use Grab to copy the window and paste that into Photoshop. If you want the waveform display to move in sync with an audio file, you ust export the waveform as a movie file and that is a bit more complicated.
    bogiesan

  • How can I use the sound track from a movie as background in the menu

    I have created a short movie in IMovie that I want to use in the IDVD menu and also want to use the soundtrack from that movie as the background for that menu.  Thus far, I have not found a way to make that happen.

    Extract the audio from the movie with either Quicktime Pro,  iMovie or a 3rd party audio editor like Amadeus Pro and use it as the menu's audio. 
    OT

  • How can I make all my tracks start at the same time? In bar 0 to be more specific

    HI! I want all my tracks to start at the same time. I need teh audio files to start at bar numer cero.

    Hi, first you'll have to adjust the project start to bar zero like shown here:
    http://help.apple.com/logicpro/mac/10/#lgcpce0833d7
    …then select all regions in your project and make sure the playhead is positioned at the start of bar zero exactly, now follow this:
    Have a nice day!

  • My video is crap but I love the sound. Can I save the sound track of a movie as an mp3?

    My video is crap but I love the sound. How Can I save the sound track of a movie as an mp3?

    Yes, you can do this.
    In iMovie, use SHARE/EXPORT USING QUICKTIME...
    In the dialog box, choose "Sound to AIFF".
    This will create a sound only version of your movie in the AIFF codec.
    You can drag this AIFF file into iTunes and convert it to AAC or MP3.
    In iTunes, go to iTunes/Preferences. In the General Tab, click the Import Settings button. Remember how it is currently set, (because you may want to change it back.) Choose IMPORT USING: MP3 Encoder.
    Now, right-click on the music track in iTunes and select "Create MP3 Version".

  • How can I change the gain on one audio track in the selection?

    How can I change the gain on one audio track in the selection? Is there a way to adjust the gain as it is implemented for example in cubase - pull waveform up and gain varies?

    I'm not sure what you mean by "in the selection", or, more honest: I don't understand that at all.
    So, instead I'm going to tell you that you can indeed adjust the Gain of one or more selected region(s) in the Region inspector on the left hand side.

  • I imported an album consisting out of 2 cd's in itunes library. Now the album shows up as 2 different albums. How can I put them together as one album again?

    I imported an album consisting out of 2 cd's in itunes library. Now I see two albums in my library: one with cd 1 and one with cd 2. How can I merge these two into one album as it should be?

    See my article on Grouping tracks into albums, in particular the section One cover for multi-disc album.
    tt2

  • How can I share a guitar track from garageband ipad DIRECTLY with another iPad with garageband?!

    How can I share a guitar track from garageband iPad DIRECTLY to another iPad with garageband...it would be so easy to just email the track!!!

    Use 3rd party apps to transfer video from one iPad to the other.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/79b3173fda7b6a6e148 5b463198f6acf.jpg

  • I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have had this same problem for weeks now with my 4S.  I just got a new 5S after being extremely frustrated and the same thing - no sounds.  After searching posts all over, I couldn't find a solution. I just told my friend of the issue and he asked "Do you have the Do Not Distrub on?"  I didn't even know such a function existed.  Upon looking that was exactly the issue.
    To resolve, go to Settings> Do Not Disturb> Manual.  If it is green, turn it off.  You will now get phone calls and text alerts.
    This functionality is also on your quick access utility menu (slide up menu).  I assume this is how it was enabled on my phone.
    I will post on other sites since I searched for weeks for this solution and didn't see it anywhere.  Good luck!

  • HT1473 how can I download an more than one audio cd to itunes, scramble all and then transfer all back to a R/W cd?

    how can I download an more than one audio cd to itunes, scramble all and then transfer all back to a R/W cd?

    Import the CDs to iTunes one at a time, following these instructions.
    Once the tracks are in your iTunes library, put them into a playlist, and get them into the order you want.  Or if you by "scramble" you mean a randomly shuffled order, use the crossing arrows at the lower left to do so.
    When you are ready, insert a blank CD, use the command File > Burn Playlist to Disc, and create an audio CD.  I strongly suggest using CD-Rs rather than CD-RWs, since the latter often have trouble in normal CD players.

  • How can I turn off location tracking by Apple?

    How can I turn off location tracking by Apple? Is is possible to roll the software back prior to Apple installing location tracking? I am very unhappy with this change by Apple. I know they probably included a reference to it in one of the user agreements, but this should have been clearly stated and offered a way to opt out. Anyway, any help on this would be appreciated.

    Yeah, I do see your point. I personally feel perfectly safe using my iPhone wherever I go however I would consider that my usage is a lot less than the average user. I've had the phone for a year and have only made a total of 5 hours worth of calls and have only taken it out of my city one or twice. So for me I don't see any privacy concerns.
    From reading the privacy statement though it seems that Apple are adamant that the collection of the geographical data etc is 99% personal information free. They use the term "non-personal information" and for that 1% where someone's personal information does somehow become mingled with their geographical location/movements etc Apple state that this information would be handled as though it was your credit card details or your social security number etc until such time as it's no longer combined.
    "If we do combine non-personal information with personal information the combined information will be treated as personal information for as long as it remains combined."
    But, I do agree with the fact that Apple really should have made us more aware of this. Instead we have found out through scientists and their research... that, coupled with the fact that no other smartphone collects this information hasn't helped either.
    I will continue to use my iPhone as normal though... I am personally confident in Apple's commitment to privacy. I know not all share this view and that's fine. We all have our own perceptions of the implications of technology...
    To answer your question about rolling back your software though that can be done. Might be a bit of a headache though and I'm not the best person to help with that. I'm sure there's some good information here though. Good luck!

Maybe you are looking for