完全にロードされたら、徐々にストリーミングされるmp3ファイルをsdカードに移動したいと思います。それを達成する方法はありますか?.
プログレッシブストリーミング中にMediaPlayer
がファイル全体を完全にダウンロードし、ファイルの任意の部分をシークできることを確認しました。将来の再生でデータとバッテリーが無駄にならないように、完全にストリーミングされたファイルを外部ストレージに移動したいと思います。
元の投稿へのコメントはあなたを正しい方向に向けていますが、少し説明することが役立つかもしれないと思いました...
私が行ったことは、ApacheHTTPライブラリを使用して軽量のプロキシサーバーを構築することです。この部分の基本を理解するには、そこにたくさんの例があるはずです。 MediaPlayerに適切なローカルホストURLを指定して、プロキシへのソケットを開きます。 MediaPlayerがリクエストを行うときは、プロキシを使用して同等のリクエストを実際のメディアホストに送信します。プロキシのpacketReceivedメソッドでbyte []データを受信します。これを使用して、HttpGetを作成し、AndroidHttpClientで送信します。
HttpResponseが返され、内部のHttpEntityを使用してストリーミングバイトデータにアクセスできます。私は次のようにReadableByteChannelを使用しています:
HttpEntityWrapper entity = (HttpEntityWrapper)response.getEntity();
ReadableByteChannel src = Channels.newChannel(entity.getContent());
データを読み戻すときに、データを好きなように操作します(SDカードのファイルにキャッシュするなど)。正しいものをMediaPlayerに渡すには、クライアントSocketからSocketChannelを取得し、最初に応答ヘッダーをそのチャネルに直接書き込み、次にエンティティのバイトデータの書き込みに進みます。 whileループでNIOByteBufferを使用しています(クライアントはソケットで、バッファーはByteBufferです)。
int read, written;
SocketChannel dst = client.getChannel();
while (dst.isConnected() &&
dst.isOpen() &&
src.isOpen() &&
(read = src.read(buffer)) >= 0) {
try {
buffer.flip();
// This is one point where you can access the stream data.
// Just remember to reset the buffer position before trying
// to write to the destination.
if (buffer.hasRemaining()) {
written = dst.write(buffer);
// If the player isn't reading, wait a bit.
if (written == 0) Thread.sleep(15);
buffer.compact();
}
}
catch (IOException ex) {
// handle error
}
}
プロキシが送信者であるように見えるように、応答のHostヘッダーをプレーヤーに渡す前に変更する必要がある場合がありますが、私はMediaPlayerの独自の実装を扱っているため、動作が少し異なる可能性があります。お役に立てば幸いです。
アイデアは、Webから直接データを読み取るのではなく、メディアプレーヤーが読み取ることができるプロキシを作成することです。
私は danikula/AndroidVideoCache を使用しました。これは構築/使用が非常に簡単です。ビデオではなくオーディオに使用しましたが、まったく同じです。
それは遅いですが、私はほとんどの人がまだ解決策を必要としていることに気づきました。 JakeWhartonのDiskLruCache に基づく私のソリューション。 2つのことが必要です
ファイルを読み取るか、ネットワークからダウンロードしてキャッシュするAsyncTask
キャッシュからInputStram/FileDescriptorを取得するためのコールバック
ステップ1:
import Android.content.Context;
import Android.os.AsyncTask;
import org.Apache.commons.io.IOUtils;
import Java.io.FileInputStream;
import Java.io.IOException;
import Java.io.InputStream;
import Java.io.OutputStream;
import Java.net.HttpURLConnection;
import Java.net.URL;
// you can use FileDescriptor as
// extends AsyncTask<String, Void, FileDescriptor>
public class AudioStreamWorkerTask extends AsyncTask<String, Void, FileInputStream> {
private OnCacheCallback callback = null;
private Context context = null;
public AudioStreamWorkerTask(Context context, OnCacheCallback callback) {
this.context = context;
this.callback = callback;
}
@Override
protected FileInputStream doInBackground(String... params) {
String data = params[0];
// Application class where i did open DiskLruCache
DiskLruCache cache = MyApplication.getDiskCache(context);
if (cache == null)
return null;
String key = hashKeyForDisk(data);
final int DISK_CACHE_INDEX = 0;
long currentMaxSize = cache.getMaxSize();
float percentageSize = Math.round((cache.size() * 100.0f) / currentMaxSize);
if (percentageSize >= 90) // cache size reaches 90%
cache.setMaxSize(currentMaxSize + (10 * 1024 * 1024)); // increase size to 10MB
try {
DiskLruCache.Snapshot snapshot = cache.get(key);
if (snapshot == null) {
Log.i(getTag(), "Snapshot is not available downloading...");
DiskLruCache.Editor editor = cache.edit(key);
if (editor != null) {
if (downloadUrlToStream(data, editor.newOutputStream(DISK_CACHE_INDEX)))
editor.commit();
else
editor.abort();
}
snapshot = cache.get(key);
} else
Log.i(getTag(), "Snapshot found sending");
if (snapshot != null)
return (FileInputStream) snapshot.getInputStream(DISK_CACHE_INDEX);
} catch (IOException e) {
e.printStackTrace();
}
Log.i(getTag(), "File stream is null");
return null;
}
@Override
protected void onPostExecute(FileInputStream fileInputStream) {
super.onPostExecute(fileInputStream);
if (callback != null) {
if (fileInputStream != null)
callback.onSuccess(fileInputStream);
else
callback.onError();
}
callback = null;
context = null;
}
public boolean downloadUrlToStream(String urlString, OutputStream outputStream) {
HttpURLConnection urlConnection = null;
try {
final URL url = new URL(urlString);
urlConnection = (HttpURLConnection) url.openConnection();
InputStream stream = urlConnection.getInputStream();
// you can use BufferedInputStream and BufferOuInputStream
IOUtils.copy(stream, outputStream);
IOUtils.closeQuietly(outputStream);
IOUtils.closeQuietly(stream);
Log.i(getTag(), "Stream closed all done");
return true;
} catch (final IOException e) {
e.printStackTrace();
} finally {
if (urlConnection != null)
IOUtils.close(urlConnection);
}
return false;
}
private String getTag() {
return getClass().getSimpleName();
}
private String hashKeyForDisk(String key) {
String cacheKey;
try {
final MessageDigest mDigest = MessageDigest.getInstance("MD5");
mDigest.update(key.getBytes());
cacheKey = bytesToHexString(mDigest.digest());
} catch (NoSuchAlgorithmException e) {
cacheKey = String.valueOf(key.hashCode());
}
return cacheKey;
}
private String bytesToHexString(byte[] bytes) {
// http://stackoverflow.com/questions/332079
StringBuilder sb = new StringBuilder();
for (byte aByte : bytes) {
String hex = Integer.toHexString(0xFF & aByte);
if (hex.length() == 1)
sb.append('0');
sb.append(hex);
}
return sb.toString();
}
}
ステップ2:
public interface OnCacheCallback {
void onSuccess(FileInputStream stream);
void onError();
}
例
final String path = "http://www.example.com/test.mp3";
new AudioStreamWorkerTask (TestActivity.this, new OnCacheCallback() {
@Override
public void onSuccess(FileInputStream fileInputStream) {
Log.i(getClass().getSimpleName() + ".MediaPlayer", "now playing...");
if (fileInputStream != null) {
// reset media player here if necessary
mediaPlayer = new MediaPlayer();
try {
mediaPlayer.setDataSource(fileInputStream.getFD());
mediaPlayer.prepare();
mediaPlayer.setVolume(1f, 1f);
mediaPlayer.setLooping(false);
mediaPlayer.start();
fileInputStream.close();
} catch (IOException | IllegalStateException e) {
e.printStackTrace();
}
} else {
Log.e(getClass().getSimpleName() + ".MediaPlayer", "fileDescriptor is not valid");
}
}
@Override
public void onError() {
Log.e(getClass().getSimpleName() + ".MediaPlayer", "Can't play audio file");
}
}).execute(path);
注:
これはテスト済みですが、オーディオファイルのキャッシュの大まかなサンプルです。何か見つかった場合は問題が発生する可能性があります。お知らせください:)