kiran
kiran

Reputation: 2428

Audio recording capabilites on Apple watch

We are working out the details on porting our iOS app to Apple Watch. One of the features on the Mobile version is ability to record the voice and store it on device and upload it to the server later. Is it possible to record the voice on Apple Watch? I looked at the Apple Watch SDK but couldn't find any thing related to Audio. Is the Audio API from iOS SDK compatible with Apple Watch ?

Upvotes: 3

Views: 2232

Answers (3)

Neil Galiaskarov
Neil Galiaskarov

Reputation: 5073

Watch OS 2 update:

There is a new API method, which displays a standard interface for recording audio from the user’s Apple Watch.

-presentAudioRecorderControllerWithOutputURL:preset:options:completion:

Apple published sample, which demonstrates how to use WKInterfaceController to perform an audio recording. Refer to this sample if you want to learn how to present an AudioRecordingViewController to record and save audio. This project also demonstrates how to playback an audio file that has been produced.

Upvotes: 2

Ilker Baltaci
Ilker Baltaci

Reputation: 11789

http://www.askaudiomag.com/articles/the-first-serious-apple-watch-audio-recording-app-for-final-cut-pro-users

Current api is limited with using the watch as remote control for iOS apps.

Upvotes: 0

bgilham
bgilham

Reputation: 5939

There's no API available to record audio directly in WatchKit. The best you can currently do is kick off a request to your iPhone app using openParentApplication:reply: and record the audio from there. That's how the Shazam app works, for example.

Upvotes: 1

Related Questions