tags:

views:

22

answers:

1

1) is it possible to record vedios and audios using android emulator(using webcam) ? , and storing the recorded vedio or audio into the pc possibly as

recorder.setOutputFile("C:/test.mp4");

+1  A: 

According to the Android Emulator page it is not possible to record videos, see section "Emulator Limitations":

No support for camera/video capture (input).

Audio recording is supported by the emulator, you can use the -audio-in switch when starting the emulator to specify the audio backend

Martin
hi martin thnks
evan