13

I have two different videos. Now here's the thing, they have the same lengths, and they are related to each other. Is there a way that I can play these videos on at the same time using VLC and also have a unified seek bar, so that the times are the same for both, since one video is dependent on the other.

Nifle
  • 34,203
  • 26
  • 108
  • 137
Games Brainiac
  • 261
  • 1
  • 2
  • 7

7 Answers7

17

If anyone is still interested in this the current version of VLC is able to do this very well without any kind of scripting or add-on. To accomplish this simply open VLC and select Media>Open Multiple Files. Inside the multiple file windows select add to add the first file. After this click on the, "Show more options," checkbox followed by the, "Play another media synchronously," checkbox at the bottom of the window. Select browse next to, "Extra media," to add the second file. Hit play and the two media files will play simultaneously with a single control window.

Tim L
  • 709
  • 1
  • 6
  • 4
2

You can do this in VLC for mac (version 2.2.6 https://get.videolan.org/vlc/2.2.6/macosx/) using File > Advanced open file.

  • That should be approximately the same as [Ramhound's answer](https://superuser.com/a/1029986/86708), except there the menu item is called "Open Multiple Files." – jpaugh May 23 '20 at 09:11
  • Is there a way to make this work for playing more than two files in sync? –  Apr 05 '21 at 00:33
2

One way to achieve this is to use ffmpeg. If you have two or more videos you can just stack them horizontally, vertically or in a grid using ffmpeg and then play it as a single video file. Here is a snippet of how you would stack two mp4 files horizontally:

ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex hstack=inputs=2 stacked_output.mp4
AayushD D
  • 21
  • 2
1

I haven't seen any player that could do that, but you could merge the two video files together to achieve what you want. See questions like https://stackoverflow.com/questions/9293265/ffmpeg-2-videos-transcoded-and-side-by-side-in-1-frame

wingedsubmariner
  • 1,502
  • 7
  • 7
0

vlcsync - it syncs multiply vlc instances in background. After tried to find a solution, decide wrote my own. This is how the solution came about.

Features:

  • play/pause/seek from any player
  • tested on Linux/Windows

Note:

  • Do NOT provide exactly frame-to-frame sync, but do it close as possible and applicable in many cases (see: Limitations)
Mr Keuz
  • 1
  • 1
0

I have recently solved it with mplayer and you can see the solution on superuser here: master-slave with mplayer

denjello
  • 373
  • 2
  • 11
0

You can use AutoHotKey to achieve something similar though not perfect. I posted my answer to a question similar to yours here

user52874
  • 151
  • 1
  • 3
  • This would be more appropriate as a comment. You're really providing a hint for where to find an answer rather than an answer. – fixer1234 Oct 10 '15 at 00:47