Sub Frame Editing

I'm editing a talking head. I need to add some words from a point earlier in the interview and rearrange some words that they said to help emphasis a point. Normally I cut the audio as close as possible in FCP add some b-roll and then take my OMF file to a sound editor who can do subframe editing to quickly make my edits sound natural. This time I do not have a budget to afford the magic of a sound person. So does Soundtrack do sub frame editing and can anyone recommend a good tutorial on line ideally one with video that I can follow to learn how to do this myself.
I think sound people are magic. Thanks in advance.
Mike Kroesen

Yes, it can. As to where to go to learn it . . . I haven't come across anything. I would highly suggest duplicating your work before starting on it.

Similar Messages

  • How to edit video to audio with a sub-frame precision?

    As all of my other posts I must begin by stating that this is not an RTFM issue. I have read the manuals and searched the web and this forum already.
    Also I beg you to read this question first before answering some nonsense. Ok, off the soapbox now.
    I am having issue synching video to audio.
    I am editing a music video at the moment at 23.976 fps. There is a master sound track (48/16) to which all of the video must be synched.
    I have not found a way of changing the position of a video clips in the timeline relative of the master audio track with a higher than a frame precision in order to obtain a perfect lip-sync.
    I am aware of the fact that one should enable "display audio units" in the timeline in order to shift an audio track relative the video with the sub frame precision, which is very useful when doing dialogue replacement to a video. For the video I am still not able to do so. Is it at all possible? Is there a workaround?
    How do they achieve a perfect lipsync when they make professional music videos?
    Thank you!

    Actually, you can set markers on the audio clip between frames.  I rember this from Jacob Robenbergs book Premiere Pro 2.0 Studio Techniques.
    You double click on the audio clip.  It opens in the Source monitor.  Then click on the fly-out menu and select SHOW AUDIO UNITS.
    Now in the source monitor you can place a marker (to be used for syncing) anyhere within the frame.  Set a numbered marker.
    Now you have a sync marker intraframe on the Audio.  You then sync this audio marker the Frame you need. Select both clips and choose syncronize.
    So it is not sub video frame, it is sub Audio frame to the correct video frame start.
    See below.  The audio sync marker is in the middle of the frame.  Hope this helps.

  • How to turn off "frame by frame" editing

    Please help!!!
    How to turn off this "frame by frame" editing ???
    Editing skips frame by frame...
    sorry for my english

    black69 wrote:
    At the top of the timeline appeared to line "ruler" (i had to run a command abbreviation) and i can not edit fluent materials only jumps frame by frame.
    Can you explain further?
    There does not seem to any timecode, frames or any numbers in the Timeline ruler.
    Are you zoomed in all the way?
    Al

  • Is there a URL portlet that will display a site in a sub frame (iFrame) ?

    Applogies in advance if the terminology is wrong or I am in the wrong forum.
    Basically I want to set up a portlet on a page that will display the contents of another web site. So you define a URL and the website that you pointed at is displayed in a sub frame (iFrame) on a page in out web site.
    I know this has been done as I have seen it on oracles test portal site. Is this a standard function in portal or do I have to create a specific provider/portlet using the PDK.
    Any advise will be appreciated.

    Hi Dave,
    I have done something similar, I think that you have to create an HTML Portlet that contains the IFRAME.
    then you can set [IFRAME_name].location from Javascript.
    Regards Michael

  • Frame by Frame editing of Video in PSE

    Hi and good morning and Happy New Year to all @ Adobe Support,
    I have had more versions of Adobe PSE than I really like to think about, not to mention other various Adobe products.
    To go directly to my question, I had thought that I had used PSE to edit frame by frame videos ?
    Have I gone bonkers ? I just purchased PSE and PE to make sure I could edit a few short videos that I wanted to draw in simple things like lines, drops, arrows, etc. Now it seems I have two products that both can't accomplish this and apparently I cannot get a straight answer to what I should have on your site or in the forum or anywhere else, for that fact. I'm hoping you are not going to tell me I need a 500 dollar program to do this ! I only have a dozen videos I would like to paint or draw in and the last time I needed this was 1992 or there abouts. I am a Mac user and currently have 10.9.1 installed. Just for your information the installation went of without a hitch for both products on Mavericks and appear to be working fine, aside from the fact I can't frame edit videos in either one.
    Thank you for your time and consideration on this matter,
    Wade Arnold
    Apple and Adobe Enthusiast

    The most recent version of PSE removed the ability to import a frame from a video file. I suspect this is what you were thinking of.
    However I assume by 'PE' you mean Premiere Elements (PRE), the video editor. You can still export a clip from PRE as a sequence of still images that you can then edit in PSE and reimport back to PRE. This is in Publish+Share> Computer> Image> Advanced, check 'Export as sequence'.
    However from your description you might be better off using the tools in Titler within PRE to draw your lines and arrows - this is way simpler than doing so frame by frame in PSE.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Closing a sub frame

    Hey Folks
    I posted a topic a few days ago concerned a problem i was having. The problem basically was that i was calling a frame from within a frame. All that i want to be able to do with this new frame is just for displaying a picture. I want to be able to close the sub frame without closing the main frame also, this is really the aim of tis post. I did up this small example of two sperate class. If any one can see the problem or can even fix it.
    Thanking You
    Ambrose
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class Main extends JPanel implements ActionListener
        private JButton b1;
        public Main() {
            //construct components
            b1 = new JButton ("Sub Form Button");
            //adjust size and set layout
            setPreferredSize (new Dimension (500, 500));
            setLayout (null);
            //add components
            add (b1);
            //set component bounds (only needed by Absolute Positioning)
            b1.setBounds (70, 85, 140, 20);
            b1.addActionListener(this);
         public void actionPerformed( ActionEvent e )
          Object Target = e.getSource();
         if ( Target ==b1)
         JFrame frame = new JFrame ("Sub");
            frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add (new Sub());
            frame.pack();
            frame.setVisible (true);
        public static void main (String[] args) {
            JFrame frame = new JFrame ("Main");
            frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add (new Main());
            frame.pack();
            frame.setVisible (true);
         class Sub extends JPanel implements ActionListener {
        private JButton b2;
        public Sub() {
            //construct components
            b2 = new JButton ("Main Form");
            //adjust size and set layout
            setPreferredSize (new Dimension (313, 230));
            setLayout (null);
            //add components
            add (b2);
            //set component bounds (only needed by Absolute Positioning)
            b2.setBounds (70, 85, 140, 20);
            b2.addActionListener(this);
         public void windowActivated(WindowEvent e)
         public void windowClosed(WindowEvent e)
         //Main.dispose();
         public void windowClosing(WindowEvent e)
              //new JFrame ("Main").dispose();
         public void windowDeactivated(WindowEvent e)
         public void windowDeiconified(WindowEvent e)
         public void windowIconified(WindowEvent e)
         public void windowOpened(WindowEvent e)
         public void actionPerformed( ActionEvent e )
          Object Target = e.getSource();
         if ( Target ==b2)
              System.out.println("Testing Method");
              JFrame frame = new JFrame ("Main");
            frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add (new Main());
            frame.pack();
            frame.setVisible (true);
    }

    Without looking at this code sample I can recommend you:
    For example you have 4 classes:
    loader : load app up
    frame1 : self-explanatory
    frame2 : self-explanatory
    glue : class that has static references to both frames
    So, thanx to glue, you can access both frames from whatever place in code.
    -- Use jframe's setVisible (true/false) to hide/show frames whenever you want to.

  • Sub frame slip audio

    Does anyone know if audio can be slipped by sub frame amounts in the time line. These are independent audio files. I found how to slip audio linked to video in the Viewer, but I'm trying to sync a non time code high res recording to the camera mic sound, not shift the sync of the audio attached to the video. Maybe it's in the manual, it usually is, but I don't seem to be able to find it.
    cheers

    It ISN'T in the manual... but here's how to do it in FCP:
    http://proappstuff.com/proapptipsvideotutorials/879F6B61-CFF9-4FD1-8D43-FDF89605 611A/BE5CA6A0-2D41-4F89-955C-16A05AC2A383.html
    CaptM

  • AR Invoice Crystal Sub-report Editing

    Hi experts,
    please i need a help on editing AR invoice crystal report  version in SAP business one .
    i want to add some fields to the sub report named summary section.
    For this particular customer he or she wants to see the sum of the individual row VAT and the individual row Freight.
    From the summary section all i see is parameters set but no tables added and parameters set can not be edited.
    Individual Vatsum and freights total (TotalExpns) can be found under table INV6. I added that table but nothing worked.
    attached is the crystal report for customer and i want the table OINV AND INV6 to be added to the summary section. The VatSum and TotalExpns from INV6 to be made in a formula. ADD Vatsum and Totalexpns form INV6. And the value should be based on docentry from the main report.
    we dont want duplicated Total Expns. It should be just one and added to the Sum of Vat.
    Urgent Help will be much appreciated.
    Regards
    Justice

    @Nithi,
    i want ti create a parameter on the subreport that links with the parameter on the main report.
    that is the dockey@ and objectid@.
    so that the values i will pick from the added tables in the subreport will come out based on the main reports  parameters.
    Please experts i need urgent help with my question.

  • How to do frame-by-frame editing in iMovie 08 and export in H264?

    I wish to edit some videos and then export them in H264 so I can use them on a website.
    I have tried to edit with iMovie 08 but can only edit second-by-second. I want to edit frame-by-frame ie to the millisecond. And it appears that iMovie 08 does not export in H264.
    I have looked at iMovie 11 which has a Precision Editor which would work to edit as I want but for that I would have to upgrade from Leopard to Snow Leopard which I don't want. It would export H264.
    I also have QuickTime Player 7 Pro but that too seems to edit only by the second not by the frame; it does however seem to produce H264
    How can I edit these videos precisely and produce H264? Is there another application which would work better (and doesn't cost a fortune).
    Thanks for any ideas

    iMovie exports in h.264 by default. All the presets are h.264 (except Tiny).
    If you need to adjust the h.264 in some way, then SHARE.EXPORT USING QUICKTIME.
    To edit to the nearest frame, Go to iMovie/Preferences and select Display Time Codes.

  • Can Imovie9 do frame by frame editing?

    I need to separate individual frames in editing. Using a cursor is just not accurate enough.

    Let me add, that of the issue is setting in and out points at the frame level, go into iMovie/Preferences and make sure there is a check mark in the box next to "Display Time as HH:MM:SS:Frames
    It also helps to select VIEW/PLAYHEAD INFO.
    Depending on what you are doing, it may also help to move the thumbnail slider in the Project Pane and/or the Events Pane to 1/2 second.
    Also, when you click on a clip in the project that has more (or less) frames available in the EVENT, you can add frames one at a time by clicking on the little arrow icons at the botton left and bottom right of the clip. A precise handle will pop out that makes it easy to adjust frame by frame, and you see it in the viewer.
    That gets me 99% of what I need, but if you need more, there is the Precision Editor, which you get by clicking Window/Precision Editor (or Command/)
    Message was edited by: AppleMan1958

  • Audio disabled in frame by frame editing - FCP 7

    Hello,
    I have installed the update for Apple Pro aps and it seems to have turned something off. When editing in FCP 7 the audio for frame by frame viewing (via the arrow keys) has been disabled, in both senses (actual sound, and the sound level meter). Does anyone know how to fix this or what setting to change in user prefs? Makes editing a bit hit and miss at the moment!
    Many thanks

    Hi
    Are you sure you don't have audio scrubbing toggled off?
    Shift S
    Haha that's what you call killing 1 bird with 2 stones
    Message was edited by: videocrafter

  • Single frame edit

    In editing my project, I have a couple of flash frames within shots. I can't get the time line stretched out enough to cut just one or two frames. Any suggestions?
    Thanks.

    Press Cmd-equals until you've zoomed in enough to see single frames. If you're zoomed in all the way and you still can't do it you have some other problem. You might need to describe exactly what you're doing and what happens when you do it.

  • Ending a sub frame

    hi there
    i want to close a frame in my app without exiting the main app
    what to write in the actionPerformed method to place on the button
    Thanks

    This is one way:
    subFrame.setVisible(false);
    subFrame.dispose();

  • Key frame editing in premiere8

        According to the manual if i edit effects one keyframe at a time they will morph thruout the clip.I selected a clip in the timeline made some keyframe dots,and added an effect .Then i weht to the task box and made the moves to open the edit effects panel.At each dot i made drastic changes, then down at the keyframe advance button i would go forward to the next dot and do the same.I did major changes like red to blue or 0 to 100%.Ok so i get to the end,push done then push apply and i get a clip of one overall effect that does not change.Can any one please shed some light on this? thanks   Tom

    Tom,
    I do things differently. I will add the necessary Effects to the Clip first, with no Keyframes yet. Then, with the Clip Selected, go to Edit Effects, which will get me to the Effects Control Panel. Then, for each Effect, will toggle animation (Stopwatch), to start adding the Keyframes, and then adjusting the parameters of each point that I want to affect the Clip. Each Effect, that can be Keyframed, will have its own set of Keyframes. They may match up with one another with several Effects, but they do not have to.
    My guess was that you only added Keyframes for one Effect, and if you did this in the Timeline, it was probably either Opacity, if in the Video Track, and/or Volume, if in the Audio Track. Those Keyframes do NOT affect any other Effects.
    Good luck, and hope that this helps.
    Hunt
    PS - if you are still having issues, please post a screen-cap of the Clip Selected, the Effects Control Panel open, and the Effects twirled open.

  • ITS Frame Editing

    ITS : I have 3 frames for one of my ITS service, only 2 are visible initially. when i click on the data inside any one frame the text related is displayed in the 3 frame.
    Portal: The problem i am having is when i create a SAP IAC iview from portal for the same service it displays two frames but is overwriting the second frame instead of using the 3rd frame.
    Any help/suggestions is appreciated

    alexanderb47 wrote:
    .. is there a plug-in to help this problem or another solution - apart from reshooting....?
    search the usual suspects ..
    geethree.com
    imovieplugins.com
    stupendous-software.com
    .. for a 'zoom' plug-in.. adding a slight zoom could 'push' the mic outside the frame.. but, zooming video means allways a (dramatic) loss in pic quality.. just test it ...

Maybe you are looking for

  • How to record mouse movements?

    Hello, I have the most updated version of Mac OS on my 2014 Macbook Air. Is there a program I can use to record my mouse strokes and clicks? I am doing a repetitive task and would like for the mouse to move on its own and make the same exact movement

  • Mail Server Plloing

    Hi I have done mail server polling.. In this mail adapter is sender... File adpater is Reciever.. Now how to test my senario.... please help me Thanks & Regards Ravi Shankar

  • Interview questions in gems soft sollutions freshers

    hi friends pls tell answers to theese with some sample coding 1.what is the purpose of start of selection .if there  is no start of selection does the report will run ? 2 how to pass data from one report to another report. 3. can we go from 10 th lis

  • Settings in Solution Manager

    Hi,    In Solution Manager, can we able to make settings like, if the message came to Support team, and if particular user hasn't seen the message for 30 minutes a mail should goto his Boss mentioning he haven't seen the message till now. And then af

  • IPhone4 is not full recharged but showing "unplugged" (fully recharged) icon

    Help please --- recently, when I connect my iPhone4 to the charger, it usually (70%) shows the "unplugged" (fully recharged) icon but I find it is actually recharging (but very very slow) When I use the same cable and connect to the PC, no such probl