Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Video player needed (Read 3058 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Video player needed

Is anyone aware of a video player that can output 2 movies on the same screen at the same time?
I output a movie from a pc to a huge led display and I'm trying to figure out a way to play 2 movies by splitting the display in half via a software video player.
Basically a software version of a quadro hardware splitter is needed.

Thanks in advance!

Mihailo

Video player needed

Reply #1
you could try to use avisynth with a script like;

Code: [Select]
a = DirectShowSource("film1.avi" ,fps=25)
b = DirectShowSource("film2.avi" ,fps=25)
video = StackVertical(a,b)
return video
PANIC: CPU 1: Cache Error (unrecoverable - dcache data) Eframe = 0x90000000208cf3b8
NOTICE - cpu 0 didn't dump TLB, may be hung

Video player needed

Reply #2
Hvala smok! I now just need to figure out how to use avisynth. As far as I can tell, those scripts are read by Media Player Classic as a movie file?

Video player needed

Reply #3
yes, most players will play them fine (and 'realtime' if the machine is fast enough).
PANIC: CPU 1: Cache Error (unrecoverable - dcache data) Eframe = 0x90000000208cf3b8
NOTICE - cpu 0 didn't dump TLB, may be hung