Quote:
Originally Posted by Bongle
|
Error. Is this the link that can only be viewed if you are in Canada?
If not, then the link is now bad.
Quote:
Originally Posted by Bongle
I don't think the video capture side of it would be too difficult. Set up a Directshow video capture graph that spits the data to a file. As for the field communication part, that might be more difficult. Setting up the graph would probably an hour or two of work to research the filters you'd need.
When you get contacted by the field computer (or the user pushes a button to say that the match has started)
IMediaControl* pifController = NULL;
m_pifGraph->QueryInterface(IID_IMediaControl,(void**)&pifCont roller) // gets the media control pointer from the main graph
pifController->Play(); // starts the graph running
pifController->Release(); // releases our COM reference
// yay! now the graph is playing and saving to a file!
|
Can you just base it off of a sound input? The match start sound for example? I know this a question coming from a non-programmer like me, but how hard would it be to set up something to record and be started somehow by the match start & end sounds??
Then again, someone can just sit there at the feed box at the regional and start and stop recording manually as well.