vitamio ライブラリを使用してオンライン オーディオ ストリームを再生していますが、これは asf ストリームを再生できません。
mPlayer=new mPlayer(this);
try {
mPlayer.setDataSource(path);
//mPlayer.prepareAsync(); // prepare async to not block
// main
mPlayer.prepare();
mPlayer.start();
} catch (IllegalArgumentException e) {
Log.e(TAG, "mPlayer is onStartCommand error");
e.printStackTrace();
} catch (IllegalStateException e) {
Log.e(TAG, "mPlayer is onStartCommand error");
e.printStackTrace();
} catch (IOException e) {
Log.e(TAG, "mPlayer is onStartCommand error");
e.printStackTrace();
}
助けてください!