Android录音,如何定制录音体验?
我正在使用
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
atartActivityForResult(intent, 1); // intent and requestCode 1
以下方式 录制音频: protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1) {
...
// lets get the uri
Uri audioUri = data.getData();
'''
所以,我有一个由 audioUri 指向的音频。
如何保存此 Uri 中的文件? 还请告知音频的格式。
是否可以更改音频界面 GUI 的外观和感觉...,我的意思是我们在录制时看到的界面..
谢谢
I am recording Audio using,
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
atartActivityForResult(intent, 1); // intent and requestCode 1
In the
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (requestCode == 1) {
...
// lets get the uri
Uri audioUri = data.getData();
'''
So, I have a audio pointed by audioUri.
How can I save a file from this Uri?
Please also tell the format of audio.Is it possible to change the look and feel of the GUI of the audio interface ..., i mean the interface that we see at the time of recording..
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论