0

I am working on a bigger project of video-wall and want to display multiple sources of videos on a single display.

something like this --

enter image description here

What are all my options?

  1. Java with JMF
  2. Python with GStreamer bindings

Before committing to a technology, I want to get a clear picture about available resources and their limitations.

Vineet Menon
  • 728
  • 2
  • 9
  • 25

1 Answers1

3

With gstreamer you can realize this. You would use 4 uridecodebin instances and feed them into a videomixer. On each videomixer.pad you can set the xpos,ypos,z-order and alpha. Between the uridecodebins and the videomixer, you probably want to plug scaling and framerate adaptation.

ensonic
  • 3,304
  • 20
  • 31