微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

mp4 音频文件修剪形式 url

如何解决mp4 音频文件修剪形式 url

我使用的是音频的 URL,文件类型是 mp4,它是 URL。现在我想在我的系统中修剪这个音频使用媒体商店。如果我使用媒体商店中的现有音频,它工作正常。现在我的问题是如何使用此系统或其他系统使用我的 URL mp4 音频。

    Cursor c = mAdapter.getCursor();
    int dataIndex = c.getColumnIndexOrThrow(MediaStore.Audio.Media.DATA);
    String filename = c.getString(dataIndex);
    try {


        Intent intent = new Intent(getApplicationContext(),RingdroidEditactivity.class);
        intent.putExtra("was_get_content_intent",mWasGetContentIntent);
        intent.putExtra("mFileName",Uri.parse(filename).toString());
        startActivity(intent);

    } catch (Exception e) {
        Log.e("Ringdroid","Couldn't start editor");
    }

如何以同样的方式传递我的 URL mp4 文件

MP4 音频:Link

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。