I've got 3 videos, all 3 have the same time, same amount of frames, and they only differ in terms of encoding quality.

Now I need them to run side-by-side in synchronized fashion for evaluation purposes. Meaning when I press "play" BOTH! videos should start. Analogically for stop, forward, backward.

Anyone know any player capable of doing that? By that I mean playing more than 1 video side-by-side...

Platform: Win7

link|improve this question

62% accept rate
1  
Invest in some finger weights and train yourself to click very quickly. – ta.speot.is May 10 '10 at 11:15
You're missing the point: I need a player capable of displaying more than 1 video. – Don Salva May 10 '10 at 15:28
I think perhaps he was joking... – Joe Taylor Jul 21 '11 at 8:13
feedback

5 Answers

up vote 3 down vote accepted

VLC on Windows (1.1.10 or later):

  • Tools → Preferences
  • Show Settings → All
  • Click Advanced
  • Uncheck "Allow only one running instance"
  • Uncheck "One instance when started from file"

VLC on OS X does not provide the same set of options. You can however run multiple instances from the Terminal with open -a VLC.

link|improve this answer
feedback

google probably already told you, you could buy a couple proprietary software who could do that, but just in case : videocompare, tmpgenc, vidlord...

This one's free : http://forum.doom9.org/showthread.php?t=138430

(working download links at the end of the thread)

Untested because my wine setup is completely screwed right now. It doesn't do side by side but stacked playback (unless you have a very good lcd you won't be seeing the same thing by playing the same vid in two opposite corners of the screen anyway)

If you think you really need side by side you can use avisynth to do what zimmer said.

clip1 = DirectShowSource("C:\MyEncode1.foo", audio=false)
clip2 = DirectShowSource("C:\MyEncode2.foo", audio=false)
StackVertical(clip1,clip2)

(reference forum.doom9.org/showthread.php?t=139769)

You don't need to do an encode (wich would add its own encoding artifacts anyway), just make a project that would produce an encode of the two vids playing together and skip through the file.

link|improve this answer
feedback

I image you can use an AutoHotKey script to send a "Play" shortcut to all three players in a very short amount of time.

Whether they are able to start playing at exactly the same time is a different matter. Even if they are able to start straight away, I imagine there will be some fighting for the hard drive. Might want to make a RAM disk if this is an important evaluation.

link|improve this answer
You're missing the point: I need a player capable of displaying more than 1 video. – Don Salva May 10 '10 at 15:27
Any media player where you can open up more than one instance, eg VLC – ta.speot.is May 11 '10 at 1:20
Not really taspeotis. Because I have to manually start each application which in turn translates into NOT synchronous. – Don Salva May 15 '10 at 8:38
feedback

If this is not something you do very often, I would use a video editing software like vegas to build one video with all of them showing.

Youtube video example of how to do that.

link|improve this answer
That's a very inconvenient way to do that. Still better than nothing so far. – Don Salva May 10 '10 at 15:28
feedback

Many players will be able to output a picture of a single frame in the video.

You could choose multiple points in your videos to compare different types of image (clouds, smoke, trees, grass, motion are good for encoding comparisons) and take the same frames from each of your videos.

You can then make comparisons on a static image rather than trying to spot differences in motion. You can compare on a pixel by pixel basis if you want.

Ensure you don't use JPG as the output though as this is a lossy format and will introduce its own artefacts.

link|improve this answer
You're missing the point: I need a player capable of displaying more than 1 video. – Don Salva May 10 '10 at 15:26
@NoCanDo: I understand that, this is just an alternative option for you to compare video encoding results should you not find a suitable answer. – Shevek May 10 '10 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.