Hello everyone,
in fact I would turn off the sound when I make a (videoControl.getSnapshot (null)
to retrieve the image from the camera.
I board try with:
import javax.microedition.media.control.VolumeControl;
import javax.microedition.media.Player;
import javax.microedition.media.control.VideoControl;
import javax.microedition.media.Manager;
...
private Player player = null;
private VideoControl videoControl = null;
private VolumeControl vc = null;
...
player = Manager.createPlayer("capture://video");
player.realize();
videoControl = (VideoControl) (player.getControl("VideoControl"));
vc = (VolumeControl) player.getControl ("VolumeControl");
vc.setMute (true);
but vc == null and therefore does not work for mute
if someone had a solution,
(The monitor is a Nokia 5530 Symbian S60 5th)
Thank you


Reply With Quote

