You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just trying to get connected from my Mac by using the latest VLC build. Console Output is:
01-08 14:52:34.283 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 436987
01-08 14:52:34.784 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 540618
01-08 14:52:35.285 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 562897
Session is started, as well as Server by using
this.startService(new Intent(this,RtspServer.class));
the IP of my Z3 is being received by using
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
int ipAddress = wifiManager.getConnectionInfo().getIpAddress();
Log.i("info", "ip address " + String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff),
(ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)));
there is no stream which could be opened. Did I got anything wrong?
Hi folks,
great work!
Just trying to get connected from my Mac by using the latest VLC build. Console Output is:
01-08 14:52:34.283 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 436987
01-08 14:52:34.784 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 540618
01-08 14:52:35.285 18206-18206/com.simongiesen.xperiastream D/MainActivity: Bitrate: 562897
Session is started, as well as Server by using
this.startService(new Intent(this,RtspServer.class));
the IP of my Z3 is being received by using
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
int ipAddress = wifiManager.getConnectionInfo().getIpAddress();
Log.i("info", "ip address " + String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff),
(ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)));
there is no stream which could be opened. Did I got anything wrong?
mSession = SessionBuilder.getInstance()
.setCallback(this)
.setSurfaceView(mSurfaceView)
The text was updated successfully, but these errors were encountered: