Android录音,如何定制录音体验?

发布于 12-08 14:05 字数 595 浏览 1 评论 0原文

我正在使用

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 指向的音频。

  1. 如何保存此 Uri 中的文件? 还请告知音频的格式。

  2. 是否可以更改音频界面 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.

  1. How can I save a file from this Uri?
    Please also tell the format of audio.

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文