如何从外部服务器的BLOB播放音频流?

时间:2012-10-03 04:43:57

标签: php android mysql blob android-mediaplayer

在我的应用程序中,我已经向服务器发送了一个音频3gp文件,然后使用PHP我将它作为BLOB存储在MySQL数据库中。有没有办法在Android中使用MediaPlayer播放直接从BLOB读取的音频流?我知道我可以读取BLOB并将其保存在文件系统中,然后在没有下载的情况下在android中播放但我想不保存服务器中的任何文件(如果可能的话)。谢谢你的建议。

2 个答案:

答案 0 :(得分:1)

尝试以下代码示例:尝试根据您的要求进行更改,此代码仅从BLOB读取文件:

                   SQLiteDatabase myDb;       
               String MySQL;
               byte[] byteImage1 = null; 
               byte[] byteImage2 = null;
               MySQL="create table emp1(_id INTEGER primary key autoincrement, sample TEXT not null, picture BLOB);";
               myDb = openOrCreateDatabase("Blob List", Context.MODE_PRIVATE, null);
               myDb.execSQL(MySQL);
               String s=myDb.getPath();
               textView.append("\r\n" + s+"\r\n");       
               myDb.execSQL("delete from emp1");
               ContentValues newValues = new ContentValues();
               newValues.put("sample", "HI Hello");


            try
            {
            FileInputStream instream = new FileInputStream("/sdcard/AudioRecorder/AudioRecorder.wav"); 
            BufferedInputStream bif = new BufferedInputStream(instream); 
            byteImage1 = new byte[bif.available()]; 
            bif.read(byteImage1); 
            textView.append("\r\n" + byteImage1.length+"\r\n"); 
            newValues.put("picture", byteImage1); 

            long ret = myDb.insert("emp1", null, newValues); 
            if(ret<0) textView.append("\r\n!!! Error add blob filed!!!\r\n");
            } catch (IOException e) 
            {
                textView.append("\r\n!!! Error: " + e+"!!!\r\n");   
            }


            Cursor cur = myDb.query("emp1",null, null, null, null, null, null);
            cur.moveToFirst();
            while (cur.isAfterLast() == false)
            {
                textView.append("\r\n" + cur.getString(1)+"\r\n");
                cur.moveToNext();
            }
        ///////Read data from blob field////////////////////
            cur.moveToFirst();
            byteImage2=cur.getBlob(cur.getColumnIndex("picture")); 
            bmImage.setImageBitmap(BitmapFactory.decodeByteArray(byteImage2, 0, byteImage2.length));
            textView.append("\r\n" + byteImage2.length+"\r\n"); 

            cur.close();

            myDb.close();

答案 1 :(得分:1)

假设MediaPlayer允许您为其提供URL,您可以通过PHP脚本对其进行流式传输,该脚本可以获取BLOB并将其回显到输出,而无需将其保存到文件系统或Android设备。如果您的PHP脚本支持HTTP Range响应,您甚至可以支持搜索。

脚本 smartReadFile.php 是一个PHP脚本,用于传输与Range请求相关的文件。
https://groups.google.com/forum/#!msg/jplayer/nSM2UmnSKKA/bC-l3k0pCPMJ