Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
I m implementing a lecture-capture project for a local university. Multiple video streams will arrive at one PC: the presenter s desktop slides, a video camera image of the presenter himself and optionally a digital whiteboard capture. These incoming streams will be managed by a desktop application that displays, transcodes/mixes and eventually saves them to disk. There will be some configuration options because the material can be distributed in various ways: as a Flash application on a DVD, as an online Flash application or as a video-on-demand stream for Windows Media Player.
This application should work on Windows. Optionally it can support other platforms, but it doesn t seem to be high priority.
Both GStreamer and DirectShow seem capable of providing the underlying technology. I have a little experience with GStreamer on Linux, and I like its design, so I m inclined to use it for this project. However, I don t know how well it is supported on Windows. I couldn t find any recent docs on how to build GStreamer on Windows. So I m afraid I ll get stuck somewhere in the process.
DirectShow seems like a safer option because it is much more widely used and there is much more documentation available for it on the internet.
Does anyone here have experience using GStreamer on Windows? Does it work well? Are there certain issues that I should be aware of?
Edit
I discovered the GStreamer OSSBuilds website and was able to quickly implement a simple video player (based on the playbin element) with it. So I think I ll pursue the GStreamer path a little further.