Playing multiple videos and keeping sync?

Hi,
I've got 3 videos (.avi wrapper) from 3 different cameras all synced together. When I run all 3 with seperate Quicktime apps they fall out of sync with each other (after 10 minutes there was a 15 second difference).
Is there any way to sync all 3 players together or to run all 3 videos in the same player? I'd like them to be frame accurate.
Are there any otehr ways of syncing the videos together (H.264?)?
Thanks for any help on this....,
Precision 670   Windows XP   4Gb Ram, 500Gb HD
Dell Precision 670   Windows XP   4Gb Ram, 500Gb HD

There are 3 different cameras but of 3 different views. However, people will be walking from one view to the next so they all need to be in sync to get the times right between cameras.
There is no audio on any of the footage.
At the moment, opening up 3 Quicktimes, each running 1 video, the quicktime that has focus tends to "run away" and fall out of sync with the other 2 (after I've selected "play all movies). I assume this is a XP focus/priority issue but is there any way around it?
Are there programmes available that will start all 3 at the same time and buffer them to keep them in sync? Can I wrap all videos in a H.264 wrapper and run them that way?

Similar Messages

  • Using ControlBarSample to Play Multiple Videos

    I'm trying to modify the ControlBarSample to play multiple videos and I'm running into a wall. I've made a few simple modifications to the control bar sample to try to play a second video file. The problem I'm having is the control bar doesn't have a reference to the new video I play and therefore can't update it's view. I'd like to be able to remove the video element playing in the ParallelElement and add a new child MediaElement and have the controlbar refresh it's reference to the new target. Also the controlbar shouldn't have to reload itself, but should stay right where it is in the display list and in the root parallel element. Can someone guide through this? Here is my simple modification to the ControlBarSample class as a starting point.
    package
         import flash.display.Sprite;
         import flash.events.MouseEvent;
         import flash.text.TextField;
         import org.osmf.elements.ParallelElement;
         import org.osmf.events.MediaFactoryEvent;
         import org.osmf.layout.HorizontalAlign;
         import org.osmf.layout.LayoutMetadata;
         import org.osmf.layout.VerticalAlign;
         import org.osmf.media.*;
         import org.osmf.metadata.Metadata;
         [SWF(width="640", height="360", backgroundColor="0x000000",frameRate="25")]
         public class ControlBarPluginSampleMod extends Sprite
              public function ControlBarPluginSampleMod()
                   // Construct an OSMFConfiguration helper class:     
                   osmf = new OSMFConfiguration();
                   // Construct the main element to play back. This will be a
                   // parallel element, that will hold the main content to
                   // playback, and the control bar (from a plug-in) as its
                   // children:
                   osmf.mediaElement = constructRootElement();
                   osmf.view = this;
                   // Add event listeners to the plug-in manager so we'll get
                   // a heads-up when the control bar plug-in finishes loading:
                   osmf.factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD, onPluginLoaded);
                   osmf.factory.addEventListener(MediaFactoryEvent.PLUGIN_LOAD_ERROR, onPluginLoadError);
                   // Ask the plug-in manager to load the control bar plug-in:
                   osmf.factory.loadPlugin(pluginResource);
                   // button to play the next item
                   var label:TextField = new TextField();
                   label.text = "PLAY NEXT";
                   label.x = 10;
                   label.y = 3;
                   label.mouseEnabled = false
                   button = new Sprite();
                   button.buttonMode = true;
                   button.addChild( label );
                   button.graphics.beginFill(0x00FFFF,1);
                   button.graphics.drawRect(0,0,90,20);
                   button.addEventListener(MouseEvent.CLICK, onButtonClick);
                   addChild(button);
              // Internals
              private var osmf:OSMFConfiguration;
              private var rootElement:ParallelElement;
              private var button:Sprite;
              private function onPluginLoaded(event:MediaFactoryEvent):void
                   // The plugin loaded successfully. We can now construct a control
                   // bar media element, and add it as a child to the root parallel
                   // element:
                   rootElement.addChild(constructControlBarElement());
              private function onPluginLoadError(event:MediaFactoryEvent):void
                   trace("ERROR: the control bar plugin failed to load.");
              private function constructRootElement():MediaElement
                   // Construct a parallel media element to hold the main content,
                   // and later on, the control bar.
                   rootElement = new ParallelElement();
                   rootElement.addChild( constructVideoElement(VIDEO_HTTP) );
                   // Use the layout api to set the parallel element's width and
                   // height. Make it as big as the stage currently is:
                   var rootElementLayout:LayoutMetadata = new LayoutMetadata();
                   rootElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, rootElementLayout);
                   rootElementLayout.width = stage.stageWidth;
                   rootElementLayout.height = stage.stageHeight;
                   return rootElement;
              private function constructVideoElement(url:String):MediaElement
                   // Construct a metadata object that we can append to the video's collection
                   // of metadata. The control bar plug-in will use the metadata to identify
                   // the video element as its target:
                   var controlBarTarget:Metadata = new Metadata();
                   controlBarTarget.addValue(ID, "mainContent");
                   // Construct a video element:
                   var video:MediaElement = osmf.factory.createMediaElement(new URLResource(url));
                   // Add the metadata to the video's metadata:
                   video.addMetadata(ControlBarPlugin.NS_CONTROL_BAR_TARGET, controlBarTarget);
                   return video;
              private function constructControlBarElement():MediaElement
                   // Construct a metadata object that we'll send to the media factory on
                   // requesting a control bar element to be instantiated. The factory
                   // will use it to parameterize the element. Specifically, the ID field
                   // will tell the plug-in what the ID of the content it should control
                   // is:
                   var controlBarSettings:Metadata = new Metadata();
                   controlBarSettings.addValue(ID, "mainContent");
                   // Add the metadata to an otherwise empty media resource object:
                   var resource:MediaResourceBase = new MediaResourceBase();
                   resource.addMetadataValue(ControlBarPlugin.NS_CONTROL_BAR_SETTINGS, controlBarSettings);
                   // Request the media factory to construct a control bar element. The
                   // factory will infer a control bar element is requested by inspecting
                   // the resource's metadata (and encountering a metadata object of namespace
                   // NS_CONTROL_BAR_SETTINGS there):
                   var controlBar:MediaElement = osmf.factory.createMediaElement(resource);
                   // Set some layout properties on the control bar. Specifically, have it
                   // appear at the bottom of the parallel element, horizontally centererd:
                   var layout:LayoutMetadata = controlBar.getMetadata(LayoutMetadata.LAYOUT_NAMESPACE) as LayoutMetadata;
                   if (layout == null)
                        layout = new LayoutMetadata();
                        controlBar.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
                   layout.verticalAlign = VerticalAlign.BOTTOM;
                   layout.horizontalAlign = HorizontalAlign.CENTER;
                   // Make sure that the element shows over the video: element's with a
                   // higher order number set are placed higher in the display list:
                   layout.index = 1;
                   return controlBar;
              private function onButtonClick(event:MouseEvent):void
                   playNext(VIDEO_RTMP);
              private function playNext(url:String):void
                   rootElement.removeChildAt(0);
                   rootElement.addChild( constructVideoElement(url) );
              /* static */
              private static const VIDEO_HTTP:String = "http://mediapm.edgesuite.net/osmf/content/test/logo_animated.flv";
              private static const VIDEO_RTMP:String = "rtmp://cp67126.edgefcs.net/ondemand/mediapm/strobe/content/test/SpaceAloneHD_sounas_640_500_short";
              private static var ID:String = "ID";
              // Comment out to load the plug-in for a SWF (instead of using static linking, for testing):     
              //private static const pluginResource:URLResource = new URLResource("http://mediapm.edgesuite.net/osmf/swf/ControlBarPlugin.swf");
              private static const pluginResource:PluginInfoResource = new PluginInfoResource(new ControlBarPlugin().pluginInfo);

    It appears that this may be accomplished more easily if I do something similar to the StrobeMediaPlayback implementation. Looking at the StrobeMediaPlayback source code it looks like Adobe has done something a little different than their ControlBarPlugin, placing the controlbar and root media element inside separate MediaContainers and then adding those containers to the display list. Is this recommended over using the frameworks ParallelElements? If so, is communication between the control bar and root media element still a matter of just updating the target reference via metadata?

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

  • Here is a Tutorial on How to sync Multiple Video and Audio Clips

    Check out my Tutorial on How to sync Multiple Video and Audio Clips http://vimeo.com/28972315

    Very true ! My main point was to show how easy it was to sync. I still think apple has a way to go to make this a great tool. It was fast to edit but when I want to send somthing to AE 5.5 it was a nightmare. I do  I love how it organizes keywords and the color correction tools are good if you want to do it your self (check out this site http://www.colorgradingcentral.com/final-cut-pro-x-color-grading-table-of-conten ts ) it will be a great program if apple listens to all the comments but does not make it too complicated the you cant create quickly.

  • Snow Leopard iTunes 10.5 will not play multiple video tracks in QuickTime .MOV files

    I recently discovered that Snow Leopard iTunes version 10.5 won't play multiple video tracks in a QuickTime .MOV file.
    Both video tracks appear and play correctly when playing the file in:
    - QuickTime Player 10 or QuickTime Player 7.7 on the same Snow Leopard machine
    - iTunes 10.3.1 on another Snow Leopard machine
    - iTunes 10.5 on Leopard or Windows 7
    So I think the problem is iTunes 10.5 on Snow Leopard (although I haven't been able to test iTunes 10.4).
    First test file is two 640x480 video tracks side-by-side (total dimensions 1280x480):
    http://160.94.17.23/demo/two-video-tracks-1280x480.mov
    All I see is the first (left) video track, and not the right one.  iTunes "Get Info" command incorrectly reports the video dimensions of the file as 640x480.
    Second test file is two 640x480 video tracks played one after another (duration of 10 seconds each):
    http://160.94.17.23/demo/two-video-tracks-640x480.mov
    All I see is the first video track, and although it reports the correct file duration (20 seconds), the second video track never appears -- it simply freezes on the final frame of the first video track for the last 10 seconds.
    Anyone else see similar behavior?  Unless I'm missing something, I suppose I should submit this as a bug to Apple.

    I have the same problem, i tried re-installing, converting it to AVC H264 but none seems to work so far

  • I can't download any video or software from firefox, or play any video and has reinstalled firefox.

    I can't download any video or software from Firefox, or play any video and has reinstalled Firefox. I have upgraded to FF 23 and still have the same problems.

    Did you remove both older Flash plugins and installed the latest version of the Flash plugin.
    # Shockwave Flash 11.7 r700
    # Shockwave Flash 11.6 r602
    You can check the Flash player installation folder for multiple Flash player plugins and remove older version(s) of the plugin (NPSWF32).
    *(32 bit Windows) C:\Windows\System32\Macromed\Flash\
    *(64 bit Windows) C:\Windows\SysWOW64\Macromed\Flash\
    You can find the latest Flash player versions for Firefox on this page.
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • How can I delete the video and keep the Audio  in a few frames using Imovie 11

    How can I delete the video and keep the Audio  in a few frames using Imovie 11?

    I've met the problem too before. but i solved it with  Audio Converter Mac instead of iMovie. If you have similar situation that just want to keep audio but not video, and if your file format is not workable in iMovie, you can use the Audio Converter for help too. it can easily help to extract audio soundtrack from any video format. Or if you need to convert one audio format to another, it is a good choice too, because it supports many common audio output formats.
    <Link Edited By Host>

  • My Desktop pc & mobile not play any video and in my laptop no problem

    i'm using 30 version of firefox in my Laptop, Desktop & Mobile also but in my Desktop pc & mobile i'm unable to play any video and in my laptop no problem.
    So if the prob. in my network so it will be not possible.
    i think like earlier some time ago flashgot will stop working in firefox now this same mistake is accures again for video.
    N yes i've updated my flash player, shockwave, java etc...

    With the last Firefox upgrade, some plugins are no longer
    enabled until you enable it.
    Open the Add-ons Manager by
    Pressing the '''Alt''' or '''F10''' key to bring up the tool bar.
    Followed by; '''Tools > Add-ons.'''
    Hot key; '''<Control> ''(Mac: <Command>)'' <Shift> A)'''
    On the left side of the page, select Plugins.
    BTW; At the top right is a link to check your plugins.

  • My iPad quit playing YouTube videos and iheart radio

    My iPad no longer plays YouTube videos and I Heart radio.  This started after a recent update to the iOS.  Any ideas on how to fix?

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • I TRY TO PLAY A VIDEO AND A MESSAGE THAT SAYS THE MOVIE IS NOT IN A FORMAT THAT QUICKTIME PLAYER UNDERSTANDS

    I TRY TO PLAY A VIDEO AND A MESSAGE THAT SAYS THE MOVIE IS NOT IN A FORMAT THAT QUICKTIME PLAYER UNDERSTANDS.  WHAT DO I DO?

     
    ER82 wrote:
    I TRY TO PLAY A VIDEO AND A MESSAGE THAT SAYS THE MOVIE IS NOT IN A FORMAT THAT QUICKTIME PLAYER UNDERSTANDS.  WHAT DO I DO?
    Tell use what format the video is that you are trying to play.  Or post the url of the video site for others to test out for you.
    Please do not type in CAPS.  It is very hard to read & is considered shouting in cyber space & not appropiate here.  We can all hear ya! No need to SHOUT!  Thank you.

  • Is there a way to play a video and disable the touch screen

    I want to be able to play a video and disable the touch screen so that it will play uninterrupted (even if the screen is accidentally touched). Isn't there a "hold" button?

    Press the Home button once real quick to put the iPod on Hold.

  • TS1702 my camera is playing up its stuck in negative mode. even when i play a video and on youtube it plays in black/white negative mode. anyone help please?

    my camera is playing up its stuck in negative mode. even when i play a video and on youtube it plays in black/white negative mode. anyone help please?
    <E-mail Edited by Host>

    Thanks for that 'sberman' - because my iPhone is backed-up to my work computer (only at this stage) I have had to call our IT Department in Adleaide. (4 times this morning). The last guy managed to get the phone into 'DFU Mode' - no more recovery mode screen - (kind of 'asleep' perhaps) from my understanding of same. I am awaiting a call again from IT so they can get my computer to actually recognise my iPhone on the C Drive. This also happened to  one of my colleagues in Newman (WA). She got so frustrated with the whole process that she bought another phone the next time she was in 'civilisation.' She hasn't had any problems since. (Cross fingers).
    Thanks again, Sandra2474.

  • My iPhone 4S has no sound when I play music, videos and movies

    My iPhone 4S has no sound when I play music, videos and movies

    Is the slider all the way to the right??
    And no, if your phone is vibrating when you get texts/calls then you're not in Do Not Disturb.   You would see a Crescent Moon symbol to the left of Battery % if it was on.

  • Flash player plays online video and games extremely slow

    I had my pc reformatted two days ago  but prior to that I never had problems like this. playing streaming videos and games gives me extreme pain! especially watching videos on youtube, the video loads fast but it plays like in slow motion and almost frame by frame, so I waited for the video to load completely but when I played it, it's still the same it was annoyingly slow and the play buttonl sometimes is not responding! I install and reinstall the latest version of flash but nothing happened I used IE8 and Mozilla Firefox 3 but both have problems.... but when playing games and videos saved on my hard disk all is very much fine, it plays fast and no fuzz. I also noticed that  sites that uses flash also have lags and plays animations slow... I need help badly! Im using windows xp, pentium 4, 2.80 ghz, 512ram and nvidia geForce 7300 SE / 7200 GS internet connection is 100.0mbps dsl connection, I still have 30gb free space on c: so I wonder why is it like that!  Please help!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Installed 10.5 and when I go to my library list (recently played, purchased, videos and ect.) I won't let right click gives me a restricted symbol? I have to open it a different way. Anyone else having this issue?

    Installed 10.5 and when I go to my libary list to click open the selcted name (recently played, purchased, videos and etc.) I get a "restricted symbol" and it won't open. I have to open in a totally different way now. Anyone else having this problem? Can figure out what happened!!

    1) When I go to the apple.com website my computer will either be really slow or freeze my whole system down to where I have to reboot my computer again. This does not happen all the time but when it does operate it is molasses slow.
    By any chance, are you uswing Kaspersky security software?
    If so, see:
    [With Kaspersky Internet Security 2011 installed on my computer the website apple.com is imaged incorrectly. What should I do?|http://www.kaspersky.com/support/kis2011/all?page=14&qid=208282422]

Maybe you are looking for

  • Auto start for all services under solaris 10 ?

    Hi, Can I set the oracle auto start ? include listener, sqlplus...etc. Thanks.

  • Changing my number?

    I am getting the blackberry curve 8530 sometime this week & i was wondering if its free to change your number when you get a phone. This person is literally harassing me by texting me every single day and calling me even though i ignore that person,

  • Contact not loaded in Messenger Express' Composer

    Hi, My iMS version is as follows: - iPlanet Messaging Server 5.2 HotFix 1.09 (built Jan 7 2003) libimta.dll 5.2 HotFix 1.09 (built 15:05:46, Jan 7 2003) Microsoft Windows 2000 version 5.0 Service Pack 4 (Build 2195) And I recently encountered problem

  • Funds Mangement - Multiple Account Assignments in Stock procurement (PR/PO)

    In any unassigned Purchase requisition / Order ( purely stock procurement, not for an order, cost center etc.) it is understood that Fund center has to be entered manually if it were to consume budget. How can i assign multiple Fund centers for a sin

  • Can't Get Past White Screen

    My MacBook will not boot past the white startup screen. I inserted the recovery disk, but it would not recognize it when booted with the C key. I tried to eject the disk, and it would not recognize that action either. Do I have any other options?