Capture Audio and Slide show with JMF?
Hello All;
Can anyone guide me to start on how to stream or capture both Audio from the Mic and Slide show from Power point and generate a AVI file.
ie., User starts presenting a Conference with Audio and Slide show, I want to implement an Application that runs in the background and Merges Audio and Slides to a AVI or MOV file.
Please help...
I tried using Screengrabber but please let me know what you think...
[451 byte] By [
sai_nukala] at [2007-9-26 12:24:51]

Well,i wnt to do that too.
I have this Algorithm(didnt implement that but...)
I will use Two Threads
one will be the Screen Grabber,
and with synchronzed Methods,and the Other thread will capture my voice .
Thus ,meaning using ONE Processor,TWO DataSources that we will merge and ONE dataSink to Save on a file.
That Bring me to My Question:
I cant Grab the Cursor in my Screen Grabber.
I use the Following Code:::
DataSource ds = Manager.createDataSource(new
MediaLocator("screen://0,0,176,144/10"));
MediaPlayer mp=new MediaPlayer();
mp.setDataSource(ds);
mp.start();
Please Help me