Languages

Menu
Sites
Language
How to record voice in gear 2 is any code for referrence

Am new in tizen can anyone tell me how to record voice in tizen wearable device through coding my requirement is to record voice clip in wearable device (Gear2)and then send that clip on android device for processing is any code or help will be appreciated thanks in advance

Responses

3 Replies
AVSukhov

Hello,

You can use getUserMedia

Vikrant Alekar

can you tell me how to start voice recording process programatically and play it am very new to tizen any code ?please? for referrence?

 

Seoghyun Kang

Hello,

There is a sample application in Tizen W SDK. It is called "VoiceRecorder".

Please refer it.

navigator.webkitGetUserMedia(
                {
                    video: false,
                    audio: true
                },
                onUserMediaSuccess,
                onUserMediaError
            );