Reputation: 16526
I'm looking for an efficient way to stream what Google Glass's camera is seeing in real time. I know there're several alternatives, including MyGlass, but I'd like to build my own app since it will have several extra features.
My first approach was to just send frame by frame to the server, letting server side to compose the video, but I'm guessing there must be a more efficient approach. Anyone who can point me in the right direction to a better approach?
Upvotes: 1
Views: 711
Reputation: 57173
MyGlass does not deliver live video casting, nothing even close to this. I have easily built an RTSP streaming app around the wonderful libstreaming library, which has recently been updated to support Google Glass. Worked smoothly (but with some lag) over WiFi at 320x240 resolution with H264 codec.
Upvotes: 2
Reputation: 1019
See this example for generically doing this in android: http://www.mattakis.com/blog/kisg/20090708/broadcasting-video-with-android-without-writing-to-the-file-system
Upvotes: 1