Try this. Hope it help
try
{
Player m_player;
m_player = Manager.createPlayer("capture://video");
m_player.realize();
m_vc = (VideoControl)m_player.getControl("VideoControl");
m_vc.initDisplayMode(VideoControl.USE_DIRECT_VIDEO, this);
m_vc.setDisplayLocation(0, 0);
m_vc.setDisplayFullScreen(true);
m_player.start();
m_vc.setVisible(true);
}
catch ( IOException io )
{
}
catch ( MediaException mx)
{
}
Message was edited by:
RiekeyLee