我有本地多播流。视频是MPEG4。我有主机(HOST)的IP地址和我可以获得多播流(PORT)的端口号。 为了获取内容,我应该连接并发送多播加入请求以获取内容。
import io.vov.vitamio.MediaPlayer;
import io.vov.vitamio.widget.MediaController;
import io.vov.vitamio.widget.VideoView;
import java.io.IOException;
import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.MulticastSocket;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.Enumeration;
import android.app.Activity;
import android.content.Context;
import android.net.Uri;
import android.net.wifi.WifiManager;
import android.os.AsyncTask;
import android.os.Bundle;
public class MainActivity extends Activity {
private static final String HOST = "192.168.1.1";
private static final int PORT = 1234;
int port;
InetAddress address;
DatagramSocket socket = null;
DatagramPacket packet;
byte[] sendBuf = new byte[256];
private VideoView mVideoView;
private MediaController mMediaController;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
if (wifi != null) {
WifiManager.MulticastLock lock = wifi.createMulticastLock("mylock");
lock.acquire();
}
mVideoView = (VideoView) findViewById(R.id.video);
mMediaController = new MediaController(this);
mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
// optional need Vitamio 4.0
mediaPlayer.setPlaybackSpeed(1.0f);
}
});
}
@Override
protected void onResume() {
super.onResume();
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
try {
Enumeration<NetworkInterface> enumeration = NetworkInterface.getNetworkInterfaces();
NetworkInterface eth0 = null;
while (enumeration.hasMoreElements()) {
eth0 = enumeration.nextElement();
if (eth0.getName().equals("eth0")) {
// there is probably a better way to find ethernet
// interface
break;
}
}
InetAddress group = InetAddress.getByName(HOST);
MulticastSocket s = new MulticastSocket(PORT);
s.setReuseAddress(true);
s.setTimeToLive(1);
s.setSoTimeout(10000);
s.joinGroup(new InetSocketAddress(group, PORT), eth0);
Log.log("JOINED GROUP");
byte[] msg = {
'H', 'e', 'l', 'l', 'o'
};
DatagramPacket hi = new DatagramPacket(msg, msg.length, group, TVP_HD_PORT);
s.send(hi);
Log.log("SENT HI TO GROUP")
mVideoView.setVideoURI(Uri.parse("udp://" + HOST + ":" + PORT));
mVideoView.setMediaController(mMediaController);
mVideoView.requestFocus();
} catch (SocketException e) {
Log.log("FAIL");
e.printStackTrace();
} catch (UnknownHostException e) {
Log.log("FAIL");
e.printStackTrace();
} catch (IOException e) {
Log.log("FAIL");
e.printStackTrace();
}
return null;
}
}.execute();
}
}
}
我之前在其他帖子等帖子的代码基础上遇到了一些问题。 我没有从Vitamio那里得到任何错误,但我也没有得到任何照片。 我的Android设备有以太网套接字,这就是我选择eth0设备的原因(同样,设备的选择是基于其他一些帖子,没有它我无法连接)。 也许有人尝试过使用Vitamio?在许多线程中我找到了一个人的答案,Vitamio可以播放udp流,但从来没有提到过如何,我使用了Vitamio库src代码中的示例代码。没有运气。
答案 0 :(得分:0)
好的,所以我明白了。
首先,我不需要在setVideoUri
VideoView
之前加入小组。当使用ump多播所需的Vitamio整个通信(加入组,离开组并确认你仍然在听)时,实现了。
第二件事是一个链接。我使用udp://HOST:PORT
但它应该是udp://@HOST:PORT
(空用户)。如果您尝试在VLC中测试您的udp流,那么您也应该使用与@
的链接来播放它。