How do I synchronize two files?

I have a little experience editing video files, but this is the first time I am editing two files into one video. They are files of an interview. Each of the two participants had one camera and one mic. I can get the two files to almost sync up, but one is just a tad behind the other and I would like to get them exactly in sync. I try to remove tiny chunks of one to get them to line up, but I can['t get the chunks tiny enough.  I would pot down one or the other's audio, to get rid of the echo, but if they were in perfect sync, that would not be so much of a concern. Will someone help me here? Do they need to be perfectly aligned?
Thanks.

Welcome to the forum.
Unfortunately, you have posted to the Tips & Tricks sub-forum, which is a repository for how to do things in PrE, and does not see much traffic. Maybe our MOD, Steve Grisetti, will move this out to the main forum, so that more will see it, and can comment.
PrE does not directly support Multi-cam editing, like its big-brother, PrPro, does. With PrPro, you can lock the sync and have dual Program Monitors to facilitate the Multi-cam editing.
For Audio OOS (Out Of Sync), this ARTICLE will give you tips. For syncing both the Audio & Video from two sources, things get more complicated. However, by turning Snap OFF, you might be able to nudge your Multi-cam footage just enough to work. Be sure to turn it back ON, when done, or surprises will occur.
Steve Grisetti has Multi-cam editing covered in his PrE book, and might also have an article on how best to do it in PrE on the Muvipix site, in his Learning Series.
Good luck,
Hunt

Similar Messages

  • How can I synchronize two iphones and two ipods on one MAC

    How can I synchronize two iphones and two ipods on one MAC. My wife and i each have our own iPods and iPhones but share one MAC.

    What do you mean by synchronize; music, apps, calendars, email, etc? Do you two share the same Apple ID on all devices? An Apple ID can support up to 5 computers and many iDevices.
    I hope this helps.

  • How to RELIABLY compare two File objects?

    Hi java community!
    I have two File objects and I need to know whether they both point to the same file on the system. First, I tried using the equals() method of the File object, but later I found that this often returns false even when file being pointed to by both objects is the same file.
    For example:
      public static void main(String[] args) throws Exception {
        File mFileA = new File("C:\\PROGRA~1\\MYPROG~1\\MYDATA~1.TXT");
        File mFileB = new File("C:\\Program Files\\My Program\\My Data File.txt");
        DataInputStream mInputA = new DataInputStream(new BufferedInputStream(new FileInputStream(mFileA)));
        DataInputStream mInputB = new DataInputStream(new BufferedInputStream(new FileInputStream(mFileB)));
        System.out.println("Contents of file A:");
        while (mInputA.available() > 0) {
          System.out.println(mInputA.readLine());
        System.out.println("\nContents of file B:");
        while (mInputB.available() > 0) {
          System.out.println(mInputB.readLine());
        System.out.println("\nAre file A and file B the same file?");
        System.out.println(mFileA.equals(mFileB) ? "Yes" : "No");
      }Running this gives the following output:
    Contents of file A:
    First line of the file.
    Second line of the file.
    Third and final line of the file.
    Contents of file B:
    First line of the file.
    Second line of the file.
    Third and final line of the file.
    Are file A and file B the same file?
    NoIt seems that the different representation of the paths (short 8.3 file names, vs. long file names) is confusing Java into believing that they are two separate files, even though the example above confirms that they are in fact the same file by showing the contents from input streams derived by the two File objects (which are, needless to say, identical).
    So, does anyone know how to reliably determine whether two File objects point to the same file?
    Cheers,
    Martin

    sabre150 wrote:
    Bren_McGuire wrote:
    Thanks guys.
    I'd just found it too right after I made this post. :p95% of the time the promised Dukes never arrive so thanks for the Dukes.Ditto

  • How to merge/append two files in sequence using BPM

    Hi All,
    My senario is to append two files data into a  new file on target system, only if the two files are available on source system. In case one file on the source system, no need to process file. Data in the new file should be in sequence means 1st file data then 2nd file data.
    Please suggest me how can i achieve this functionality using BPM.
    Thanks & Regards
    Sreeni

    For the first part (two files required) design as per Prateek's suggestion
    Data in the new file should be in sequence means 1st file data then 2nd file data.
    create a data structure which will be a combined structure of File1 and File2....target structure should have first reference for File1 and then for FIle2....than having two MTs (File1 and File2) at the source and the target MT at the receiver create your mapping......this will ensure that File1 data occures first and then File2 data.
    Regards,
    Abhishek.

  • How to check wwheter two files are the same?

    Hi,
    I need to check wheter two files are the same. Their names and paths may be different. How to do that? Do u have any links / examples?
    Important notice: Files used in the application will be big (ie 1, 2gb)

    Comparing a hash, if you have to calculate it each
    time, is bound to be slower than a byte by byte, or
    character by character compare.
    This kind of comparison is used mostly in things like
    content management systems, when a new file of data
    is checked to see if it's identical to a file already
    entered, hash values being stored for each file
    already in the system.
    And comparing the hashes can only prove the files are
    different, if the hashes are equal that doesn't
    absolutely guarantee that the files are the same.
    Normally you'd confirm a matching hash by actually
    comparing file content.Depends on how good your hash is..but in general...yes. I was only saying that it's faster if you're always maintaining a has of the file.

  • How do I synchronize two counters?

    Hi,
    I am using NI-PCI 6115 & BNC 2120. I want to generate two continuous pulse trains using the CTR-OUT0 and CTR-OUT1. I hope these two pulse trains have exact same rising edges, how can I synchronize these two counters? I attached my program here.
    Any suggestion will be greatly appreciated!
    Stephen
    Attachments:
    test.vi ‏33 KB

    Stephen,
    In order to generate two pulse trains on the two counters of your 6115, then you will need to provide a trigger to start both of these counters simultaneously. The counters on the 6115 are controlled via the DAQ-STC counter/timer chip.
    In order to perform these operations you will need to use the more advanced counter/timer VIs in the LabVIEW palettes. I would recommend taking a look at some of the shipping examples, such as Generate Pulse Train (DAQ-STC), in order to get a better understanding of how a single pulse generation works.
    Also, please take a look at the following websites to get a little more information as well:
    Triggering Multiple Counters with a Single Pulse
    http://exchange.ni.com/servlet/Redirect?id=10358279
    Using the Hardw
    are Start Trigger for Single Pulse Generation
    http://zone.ni.com/devzone/conceptd.nsf/webmain/7B2CAD8DD522049386256802007B8B51?opendocument
    If you have any other questions then please let us know.
    Regards,
    Michael H
    Applications Engineer
    National Instruments

  • How could i run two file of same url mapping

    hi,
    i am very new to servlet technolgy using weblogic 8.1 server. i want to know that can i provide same url mapping to two diffrent servlet files.if yes then how could i run files seperatly - i want to know that what should i pass in the address bar.
    my directory structure is
    C:\ ----------> helloWeb
    |
    |----------->WEB-INF
    |------------>classes
    and suppose i have two files in helloWeb directry
    1) ajitAutomobile.java
    2) ajitAutomobileUpdate.java
    i m using "http://localhost:7001/helloWeb/man" in my address bar but it executes only the first servlet added.
    plz help me
    im confused...
    thanx for any answer

    You can not map two servlets to the same url because the servlet container will just send the request to the first url mapping it can match. What you can do is map one servlet that will check the request for a parameter that flags the request and if it finds it will forward the request to the next servlet.

  • How do I synchronize two processes on two different PC's ?

    I have a master and slave computer with a vi running on each, periodically these processes will need to be synchronized. If the processes were running as separate threads on the same PC, I
    know could use the LabVIEW rendezvous technology to do this. But because the processes are on separate PCs, it is not obvious to me how to accomplish the sychronization. Thank you for your consideration of my
    question.

    There are (as the other posters have pointed out) a variety of way to accomplish this task, I guess the question that's of key importance, is how closely do the two functions need to be synchronized? Given that there is a network involved--which is very non deterministic--the timing I assume isn't too exacting.
    Could you explain a little more about your application. It would help us to provide more specific examples, or even code...
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Install NW7.0 ABAP Trial SP12 on Windows. how use/unpack these two files

    Hello,
    I tried to install the NW7.0 ABAP Trial SP12 on Windows XP. The download work properly I hope.
    I extracted the part1-file to separate folder.
    I have no idea how the second file can be extracted (part2).
    So I started the setup and it worked well, but the programm to get the hardware key isn't on in the file system "saplicense.exe".
    now my question is how do I have to use these two download files (extract, join together, how?) to get a complete installation source?
    Can anybody help me?
    Thanx in advance
    Hans

    Hi Hans,
    When you extract the part1 the others are extracted too.
    I use the program Winrar and works fine.
    What program are you using to extract?

  • How can I synchronize two iTunes Libraries on two platforms (Windows & Mac)

    I have a MacBook running both Windows XP Pro (Boot Camp) and Mac OS 10.4.9 and I have installed iTunes on both platforms. I have my iTunes Library and songs on an external drive (which I can "see" in Windows via MacDrive), and which I wish to keep in place to save space on my MacBook. Trouble is I cannot get my Windows iTunes to recognize the song files on my Maxtor external drive, even when I point iTunes to these files in the "Advanced" pane of Preferences.
    How can I utilize the one song folder by synchronizing the two sets of iTunes so I can listen to music on whichever platform I happen to be working on?
    I have tried placing an alias of the iTunes song folder in my iTunes folder in "My Music" in Windows but this does not work.

    I agree with Chris CA that this is the way I would *expect* iTunes to behave.
    When I look at iTunes from my account (my music is in ~/Music/iTunes/ and not available to my spouse's account), I can see in my music library all my rips and my purchases, just as I would expect. I can use Store>View My Account (<myAppleID>) and all is as expected. Home sharing is NOT on.
    Doing the same from the other account is not much different, actually. Nothing in the library yet, of course. Store>View My Account (<herAppleID>) also works. I CAN authorize my computer to play her music. I CAN view her iTunes purchases. When I attempt to download the purchases to HER library, though, I get the following dialog box:
    Now I interpret this to mean that this computer (mine) will not download from a different AppleID (also mine) for 90 days. Is that [interpretation] correct?

  • How do I synchronize two 6534 devices to output 45 bit pattern?

    I am using a PXI chassis with two 6534 cards. I am generating a 45 bit wide data pattern and sending 32 bits per update to one device buffer and 13 bits to the other. However my trigger is an external clock that is always running. This means that the data is sent to the outputs as soon as it arrives at the device buffer. On a logic analyser i've seen that the data is not in sync. I therefore need to make sure that the data on each channel is synchronized. How can this be done?

    Coxy
    Is it that you want to make sure the two 6534 moduals are in sync sending out the data? If this is the case, and you're doing pattern I/O, you can use the same clock for both moduals. (This can be done internally routing one clock to the a RTSI line.) Let me know if I am understanding your application wrong.
    Brian

  • How can I synchronize two itunes mediatheks

    including the information, how often a titel was played in one of the two mediatheks.

    you will probably need something like TuneRanger.

  • How can I Synchronize two counters in CVI using NI-DAQmx

    Hi, I am new to NI-DAQmx, and I would like to program counting of random digital pulses using two counters in LabWindowsCVI and a PCI6229 multifunction card. I have the evaluation copy for CVI 7.1
    I would like to set counter0, to count pulses from the 10MHz clock, to generate a single pulse (duration in the few ms timescale), that will gate counter1 in the same card.
    When I try to route the output from counter0 to the gate of counter1 I get an error code
    (-89137, "The specified route can not be satisfied because it requires resources that are currently in use by another route").
    How can one do the equivalent of the "Select_Signal()" in the traditional NI-DAQ?"
    I have also a hard time seting the counter0 to actually count a number of clock cycles from the 10 MHz clock.
    What is the NI-DAQmx equivalent of the function "GPCTR_Change_Parameter()" to program a counter to count a predefined number of clock cycles?
    Any suggestions are welcome.
    Fundadero

    Hi Fundadero-
    It sounds like you're programming for an M Series card with counter operations and need a bit of help with DAQmx functions.
    In order to count edges of the 10MHz reference clock you will need to use a format similar to that found in the CVI shipping example "CntDigEv.prj." This is found in the NI Example Finder (Help>>Find Examples) under Hardware Input and Output>>DAQmx>>Counter Measurements>>Count Digital Events. In order to measure pulses from a source rather than the default input terminal (ctrXsource where X is the counter number), you will need to use the function DAQmxSetCICountEdgesTerm(taskhandle char[] counter, char source terminal) as follows:
    DAQmxErrChk (DAQmxCreateTask("",&taskHandle));
    DAQmxErrChk (DAQmxCreateCICountEdgesChan(taskHandle,chan,"",edge,initialCount,countDirection));
    DAQmxErrChk (DAQmxSetCICountEdgesTerm(taskHandle, "/Dev2/Ctr0", "/Dev2/10MHzRefClock"));
    What type of operation are you trying to perform on counter 1? The strategy for routing signals will change based on this. If you're trying to perform gated counting you can specify the the task similarly as above and use the terminal "/DevN/Ctr0InternalOutput" as before. If you are trying to perform frequency measurement you will need to use the DAQmxGetCIFreqTerm function.
    Other channel properties are listed conveniently in the NI-DAQmx C Reference Help found at Start>>Programs>>National Instruments>>NI-DAQ on your start menu. A search for "channel properties list" returns this list.
    Please let us know if you have any additional questions.
    Thanks-
    Tom W
    National Instruments

  • How to Read from two file and write to another file --Please help !!

    Hi all,
    Please suggest me where i'm goin goin wrng.
    I have 2 flat files. one of them is the main file(Ann.dat) has a about 150,000 lines (each line has unique ID from 00001 to 45000) of data and the the other(Miss.dat) has a just a list of IDs that are no longer in use & have to be deleted from the first file(NewAnn.dat). (Note that Ann.dat is a tab delimitted file and Miss.dat is just a list of all invalid IDs)
    Below is my code. It doesn't do what I'm supposed to. Please suggest me or help me with a code to do it. What I'm trying to do is read each of the lines from the 2 files compare the ID in ann.dat with all the IDs in Miss.dat & if it doesn't match with the ID in Miss.dat write the whole line to NewAnn.dat. And do the rest with all the lines in Ann.dat.
    It could be a real dumb question. since i'm not a software professional, I consider myself to be newbie to programming. I desperately need your help.
    import java.io.*;
    import java.util.*;
    public class anntemp{
         public static void main(String[] args)
              String keyAnn ="";
              String keyMis="";
              String recAnn =null;
              String recMis =null;
              try{               
              FileReader fr=new FileReader("C:\\Tom\\Ann.dat");
              BufferedReader br=new BufferedReader(fr);
              int couter=0;
              while ((recAnn = br.readLine())!=null)
                   couter++;
                   keyAnn = recAnn.substring(0, recAnn.indexOf("\t"));
              FileReader fr1=new FileReader("C:\\Tom\\Miss.dat");
              BufferedReader br1=new BufferedReader(fr1);
              while((recMis = br1.readLine())!=null){
              keyMis = recMis.substring(0, recMis.indexOf("\t"));
                   if(keyAnn.equals(keyMis)){
         FileWriter fw=new FileWriter("C:\\Tom\\NewAnn.dat",true);
         BufferedWriter bw=new BufferedWriter(fw);
         PrintWriter pw=new PrintWriter(bw);
         StringBuffer writeValue = new StringBuffer();
         writeValue.append(recAnn);
                                                 pw.println(writeValue.toString());
         pw.flush();
              }catch (Exception expe){
                   System.out.println("In Exception ");
                   expe.printStackTrace();
    Thank you all in advance,
    br

    I think you need to close the files when you are done in the inner loop. Plus I think you'll be overwritting the file in the inner loop if more than one match. It might be easier to read the unused id file into a map at the start, and then loop up the id's from the master file in the map. You can put the unused id's in as the keys, and a Boolean.TRUE as the value (value won't matter). Then just check if the map contains the key for the id read from the master file. That should cut down on disk activity. This assumes the unused id file is smallish.

  • How I can synchronize two devices?

    hi
    I have a two cards (NI DAQ Card 6024E    and  NI USB-6009 OEM2)  , I would like to know the steps to sync (for analog data acquisition).
    please someone can help me?? do you know any example for these devices??
    thanks
    Franco

    You need to use a RTSI cable:
    http://decibel.ni.com/content/docs/DOC-11329

Maybe you are looking for

  • Uploaded music videos to my new ipad and when I try to play it, it says  the requested url was not found on this server.

    When I uploaded music videos to my new ipad mini and when I try to play it, it says "the requested url was not found on this server. the Video will  not play.

  • Change font color in the Text Field of a Popup Key LOV

    Hello, I have a question concerning Popup Key LOV. I want to change the font color in the Text Field of the Popup Key LOV Item. I searched the forum but I cannot find an answer about this! Although I searched the CSS and the Popup Key LOV Template, b

  • Memory leak in VM

    Hello, I'd like to point out a memory leak in the VM, and it is very annoying for the application I'm working on. Here is the code that shows the problem : import java.awt.Image; import java.awt.Toolkit; import java.io.File; import java.lang.manageme

  • Do Not Disturb -- any way to get texts from Contacts?

    I love the Do Not Disturb feature and have it set to receive calls from people on my Contacts list.  I was under the impression that it would also allow texts from my Contacts to come through, but I don't hear any alert when I receive a text.  Does D

  • Apps taking too much space

    A week ago iTunes reported that my apps too about 160 MB. I bought CoPilot NA, and tried to install on the phone. After a lengthy download, and then install, it failed. I then downloaded on my computer, and synced to my phone. CoPilot works fine, but