Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
知道如何实现从 Android 2.x 7 Android 4.x 设备到后端的实时音频流。
我可以使用像 VLC 播放器这样的应用程序作为后端吗?如何建立从设备到后端的连接并启动音频流?
MediaPlayer mp = new MediaPlayer(); mp.setDataSource(context,Uri.parse("your url")); mp.prepare(); mp.start();'
MediaPlayer mp = new MediaPlayer();
mp.setDataSource(context,Uri.parse("your url"));
mp.prepare();
mp.start();'