我开发了Android app RADIO流。
我的应用在音乐播放方面运行良好,所以我想添加广播直播网址,例如:http://162.244.80.118:4900/;stream.mp3
所以任何人都可以帮助我为现场广播应用添加网址和播放背景音乐service
。
这是我用于在Android背景音乐上播放音乐的开始service
代码
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
import android.provider.Settings;
import android.support.annotation.Nullable;
/**
* Created by User on 9/22/2017.
*/
public class MyService extends Service {
private MediaPlayer player;
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
player = MediaPlayer.create(this, Settings.System.DEFAULT_RINGTONE_URI);
player.setLooping(true);
player.start();
return START_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
player.stop();
}
}
答案 0 :(得分:0)
您可以使用ExoPlayer,它是基于Android的低级媒体API构建的应用程序级媒体播放器,您可以创建它以从服务流式传输。请参阅此链接以了解实现部分。 https://github.com/ayalus/ExoPlayer-2-Example/blob/master/ExoPlayer2Example/app/src/main/java/com/ayalus/exoplayer2example/MainActivity.java