纳金网

标题: 获取音频文件的metadata [打印本页]

作者: 狂风大尉    时间: 2014-6-25 01:21
标题: 获取音频文件的metadata
  1. String scheme = mAudioUri.getScheme();
  2. String title = "";
  3. String artist = "";
  4. if(scheme.equals("content")) {
  5.     String[] proj = {MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.ARTIST};
  6.     Cursor cursor = this.getContentResolver().query(mAudioUri, proj, null, null, null);
  7.     if(cursor != null && cursor.getCount() > 0) {
  8.         cursor.moveToFirst();
  9.         //Unity3d开发:www.unitymanual.com
  10.         if(cursor.getColumnIndex(MediaStore.Audio.Media.TITLE) != -1) {  
  11.             title = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.TITLE));
  12.             artist = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST));
  13.         }
  14.     }
  15. }
复制代码
* 版权声明:转载时请以超链接形式标明文章原始出处和作者信息
* 本文来自:Unity3D 教程手册
* 本文链接:http://www.unitymanual.com/6994.html

作者: hyui    时间: 2014-6-25 02:33
Nice, thanks for sharing this!
作者: hariboot    时间: 2014-6-25 08:53
这个有什么用途?
作者: wucnj    时间: 2014-6-25 09:03
感谢分享!!!
作者: HIDEOKOJIMA    时间: 2014-6-25 16:52
感谢分享!




欢迎光临 纳金网 (http://wwww.narkii.com/club/) Powered by Discuz! X2.5