android内置mp3文件下载,Android下载mp3文件并播放它

news/2024/12/29 16:46:27/

我试图从Dropbox下载一些音频文件供用户下次没有互联网时使用,所以代码实际上下载文件,但我有麻烦播放该音频我不知道如果我要解析下载的文件什么的,希望你能帮助Android下载mp3文件并播放它

下载文件,并发挥它的类,它发挥它在后执行,或至少它试图

class DownloadFileFromURL extends AsyncTask {

/**

* Before starting background thread Show Progress Bar Dialog

*/

@Override

protected void onPreExecute() {

super.onPreExecute();

showDialog(progress_bar_type);

}

/**

* Downloading file in background thread

*/

@Override

protected String doInBackground(String... f_url) {

int count;

try {

URL url = new URL(f_url[0]);

URLConnection conection = url.openConnection();

conection.connect();

// this will be useful so that you can show a tipical 0-100%

// progress bar

int lenghtOfFile = conection.getContentLength();

// download the file

InputStream input = new BufferedInputStream(url.openStream(),

8192);

// Output stream

OutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+"/workout.mp3");

byte data[] = new byte[1024];

long total = 0;

while ((count = input.read(data)) != -1) {

total += count;

// publishing the progress....

// After this onProgressUpdate will be called

publishProgress("" + (int) ((total * 100)/lenghtOfFile));

// writing data to file

output.write(data, 0, count);

}

// flushing output

output.flush();

// closing streams

output.close();

input.close();

} catch (Exception e) {

Log.e("Error: ", e.getMessage());

}

return null;

}

/**

* Updating progress bar

*/

protected void onProgressUpdate(String... progress) {

// setting progress percentage

pDialog.setProgress(Integer.parseInt(progress[0]));

}

/**

* After completing background task Dismiss the progress dialog

**/

@Override

protected void onPostExecute(String file_url) {

// dismiss the dialog after the file was downloaded

dismissDialog(progress_bar_type);

Uri u = Uri.parse(Environment.getExternalStorageDirectory().getPath()+"/workout.mp3");

MediaPlayer mediaPlayer = new MediaPlayer();

try {

mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);

mediaPlayer.setDataSource(Environment.getExternalStorageDirectory().getPath()+"/workout.mp3");

mediaPlayer.prepare();

} catch (IOException e) {

e.printStackTrace();

}

mediaPlayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {

@Override

public void onPrepared(MediaPlayer mp) {

mp.start();

}

});

}

}

IM实际上得到的日志

05-31 11:46:11.605 4638-4650/com.example.project.calisthenic E/MediaPlayer: error (1, -2147483648)这个错误

问题是试图播放下载的文件,即使尝试播放它与Android本地播放器它说“播放器不支持这种类型的音频文件”,所以我不知道如果我' m以错误的方式下载文件o尝试以错误的方式播放文件。

我会检查和文件大小为10KB和下载后是400B所以肯定有什么不对劲的下载

+0

你面临什么麻烦? pl发布日志,如果你有任何错误。 –


http://www.ppmy.cn/news/701600.html

相关文章

WinCE 下播放MP3代码

//我成功运行过的代码: #include "stdafx.h"#include <dshow.h>#include <streams.h> #pragma comment (lib,"Ole32.lib")#pragma comment (lib,"Strmiids.lib") void TestMP3(void); int WINAPI WinMain(HINSTANCE hInstance,H…

(三)ChatGLM-6B 的 DeepSpeed/P-Tuning v2微调

文章目录 模型文件和相关代码准备ChatGLM6B部署解决ninja报错 训练开始 模型文件和相关代码准备 安装日期&#xff1a;2023-04-19 模型文件地址&#xff1a;https://huggingface.co/THUDM/chatglm-6b/tree/main Hash: 35ca523 相对上一篇文章&#xff08;04-09&#xff09;&am…

WAV文件的频谱图显示——总结篇

前言 绘制频谱图需要纯音频数据&#xff0c;WAV就是纯音频&#xff0c;如果要用mp3等其他压缩格式的音频还需先进行解码&#xff08;解码自行查找资料&#xff09;&#xff0c;这里只讲WAV文件绘制&#xff1b; 频谱是什么&#xff1f;频谱的全称是频率谱密度。一般信号都是用…

利用WMPLib在Windows mobile下播放Mp3

程序示例(C#智能设备应用程序): 必须添加对wmp.dll的引用(项目->添加引用->windows/system32/wmp.dll)。 源文件: CMediaControl.cs

下载安装WinPcap

由于网络实验的要求&#xff0c;下载安装WinPcap 下载安装WinPcap 官网地址&#xff1a;https://www.winpcap.org/ 下载完WinPcap.exe文件后双击安装

剑指 Offer !37. 序列化二叉树

剑指 Offer 37. 序列化二叉树 请实现两个函数&#xff0c;分别用来序列化和反序列化二叉树。 你需要设计一个算法来实现二叉树的序列化与反序列化。这里不限定你的序列 / 反序列化算法执行逻辑&#xff0c;你只需要保证一个二叉树可以被序列化为一个字符串并且将这个字符串反序…

2020秋季勤思班习题第1讲解答

例题讲解 探索1 探索2 探索3 探索4 探索5 探索6 本讲巩固 1 2 3 复习巩固 1 2 3 基础过关 1 2 3 4 能力提升 1 2 3 4 创新挑战 1 2

通过包控制->获取包重新获取之后,需求类型列表不对

龙勤思(2017年11月27日)&#xff1a; 这个类型列表&#xff0c;我在把需求包提交到svn&#xff0c;再新建一个eap&#xff0c;通过包控制->获取包重新获取之后&#xff0c;就变成默认的如下列表了。我从你的原始的eap导出参考数据&#xff0c;再导入到新建的eap&#xff0c…