Google Glass将视频流传输到服务器
我正在尝试为Google Glass创建一个应用,该应用可以流式传输到服务器,并让客户端通过网络浏览器查看该流。 到目前为止,我似乎需要通过RTSP对Wowza这样的媒体服务器执行此操作,然后让一台Web服务器托管一些查看RTMP流的视频播放器,但我没有太多运气。
使用libstreaming(https://github.com/fyhertz/libstreaming)我永远无法查看流。
我也会对WebRTC做些什么感兴趣的事情,以便我可以制作类似于环聊的解决方案,但我不确定是否有任何支持此功能的库。
任何帮助表示赞赏。
自1月以来, libsreaming
已被固定在Glass上工作。 它的RTSP视频可以在VLC播放器或插件中轻松查看。 下面的代码不包括自动生成的存根。
public class MainActivity extends Activity implements SurfaceHolder.Callback, Session.Callback {
private int mRtspPort = -1;
private ServiceConnection mRtspServerConnection = new ServiceConnection() {
private static final int RTSP_PORT = 1234;
@Override
public void onServiceConnected(ComponentName className, IBinder binder) {
RtspServer s = ((RtspServer.LocalBinder) binder).getService();
s.setPort(RTSP_PORT);
mRtspPort = s.getPort();
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
setContentView(R.layout.activity_main);
// Configures the SessionBuilder
SessionBuilder.getInstance()
.setSurfaceView((SurfaceView) findViewById(R.id.surface))
.setCallback(this)
.setPreviewOrientation(90)
.setContext(getApplicationContext())
.setAudioEncoder(SessionBuilder.AUDIO_NONE)
.setVideoEncoder(SessionBuilder.VIDEO_H264)
.setVideoQuality(new VideoQuality(320, 240, 20, 500000));
// Starts the RTSP server
bindService(new Intent(this, RtspServer.class), mRtspServerConnection, Context.BIND_AUTO_CREATE);
}
@Override
public void onResume() {
super.onResume();
mResumed = true;
displayConnectString();
SessionBuilder.getInstance().getSurfaceView().setAspectRatioMode(SurfaceView.ASPECT_RATIO_PREVIEW);
SessionBuilder.getInstance().getSurfaceView().getHolder().addCallback(this);
}
private void displayConnectString() {
WifiManager wifiMgr = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiMgr.getConnectionInfo();
int ip = wifiInfo.getIpAddress();
String ipAddress = Formatter.formatIpAddress(ip);
((TextView) findViewById(R.id.connectInfo)).setText("rtsp://" + ipAddress + ":" + mRtspPort);
}
@Override
public void onDestroy() {
super.onDestroy();
unbindService(mRtspServerConnection);
}
@Override
public void onSessionStarted() {
((TextView) findViewById(R.id.connectInfo)).setText("");
}
@Override
public void onSessionStopped() {
displayConnectString();
}
}
链接地址: http://www.djcxy.com/p/25939.html