Is audio recording in开发者_开发问答 the OGG format possible?
Yes. However, first, you need to decide what codec to use. ogg
is a container format like avi
or mkv
or mp4
- just knowing the container doesn't tell you everything about the format. If you want vorbis, there are some pure java encoding libraries (eg vorbis-java) out there (not sure how polished they are!) or you can use JNI to bind one of the many C libraries. If you want some other codec, perhaps better suited to voice (speex? something else?) please specify.
精彩评论