How to play multiple videos in sync over multiple monitors using directshow?

天大地大妈咪最大 提交于 2019-12-29 04:05:47

问题


I´ve successfully managed to play up to 8 videos in sync using a single video window with multiple streams using the directshowlib for c#. The problem is the video window plays only on a single screen - when I try to have it span over many screens it does not work. The app window spans correctly, but the video plays only on one screen. Any ideas?

Thanks a lot in advance.


回答1:


I assume that you're using the VMR with multiple input pins. The VMR is going to render to a single surface, which needs to be on a single display. You should be able to render your streams to multiple VMRs, with each VMR placed on a separate display within your maximised window.

It sounds as though you have all the streams in a single graph. You can separate them into different graphs, with each graph having one source and one renderer. Starting the graphs in sync means using IMediaFilter::Run instead of IMediaControl::Run:

  • Pick one graph as the master.
  • Make sure the master has a clock. This is normally done when going active, but you can force it to happen earlier by calling SetDefaultSyncSource on the graph.
  • Query the graphs for IMediaFilter, get the clock from the master graph using GetSyncSource and pass it to the other graphs using SetSyncSource.
  • Pause all the graphs.
  • Wait until GetState returns S_OK (the pause is complete).
  • Get the time from the graph and add 10ms or so.
  • Call IMediaFilter::Run on all graphs, passing this time (now + 10ms) as the parameter.


来源:https://stackoverflow.com/questions/1299385/how-to-play-multiple-videos-in-sync-over-multiple-monitors-using-directshow

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!