前几天做了一个演示的机顶盒项目,用到了ijkplayer播放器,此播放器功能是挺强大的,做时用的是在线视频,都挺顺利,做完后,客户要求换成本地视频,这也不难,想着简单啊,谁知坑就在脚下。接下来就说道说道。
-
1.使用本地视频,那直接在项目中建个raw文件夹吧,用来放视频资源,目录如下:
sss.png -
2.进行路径获取,设置给播放器使用
uri = "android.resource://" + getPackageName() + "/" + R.raw.benz;
结果播放器报错了
E/IJKMEDIA: android.resource://com.sh.project.yz.b/2131492864: Protocol not found
E/tv.danmaku.ijk.media.player.IjkMediaPlayer: Error (-10000,0)
播放器地址不对啊,打印出来一看R.raw.benz输出的是视频的id,肯定不对啊,干脆直接写死,看看是否能播放,结果
E/IJKMEDIA: android.resource://com.sh.project.yizhuang.b/benz.mp4: Protocol not found
E/tv.danmaku.ijk.media.player.IjkMediaPlayer: Error (-10000,0)
还是错误的。项目要的急,那直接换其他方式算了,直接把视频放入assets下,看看能够播放不,结果
E/IJKMEDIA: /android_asset/benz.mp4: No such file or directory
E/tv.danmaku.ijk.media.player.IjkMediaPlayer: Error (-10000,0)
呀,还是不对,路径怎么少了点东西呢,写的明明是uri = "file:///android_asset/benz.mp4"; 怎么file没了呢,我估计是ijkplayer在底层对播放连接做了处理吧,直接给改了。急、急!
干脆直接把放在assets下本地视频拷贝到指定的路径下,因为之前使用U盘播放是可以的,在线播放也是没有问题的。写的工具类如下:
public class FileUtils {
private static volatile FileUtils instance;
private FileUtils() {
}
public static FileUtils getInstance() {
if (instance == null) {
synchronized (FileUtils.class) {
if (instance == null) {
instance = new FileUtils();
}
}
}
return instance;
}
public String getModelFilePath(Context context, String modelName) {
copyFileIfNeed(context, modelName);
return context.getFilesDir().getAbsolutePath() + File.separator + modelName;
}
/**
* 拷贝asset下的文件到context.getFilesDir()目录下
*/
private void copyFileIfNeed(Context context, String modelName) {
InputStream is = null;
OutputStream os = null;
try {
// 默认存储在data/data/<包名>/file目录下
File modelFile = new File(context.getFilesDir(), modelName);
is = context.getAssets().open(modelName);
if (modelFile.length() == is.available()) {
return;
}
os = new FileOutputStream(modelFile);
byte[] buffer = new byte[1024];
int length = is.read(buffer);
while (length > 0) {
os.write(buffer, 0, length);
length = is.read(buffer);
}
os.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (os != null) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (is != null) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
使用如下:
uri = FileUtils.getInstance().getModelFilePath(this, "benz.mp4");
输出的播放地址位:/data/data/com.sh.project.yz.b/files/benz.mp4,总算可以了,整理整理赶紧打包演示,嘿嘿。以上只是针对本地视频源较小的10兆以内的,如果大资源的视频本地播放,还是建议使用读取U盘播放。
注意:使用Android系统自带的播放器没有此问题。
网友评论