12,302
edits
| No edit summary | |||
| (4 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
| This page documents different possible approaches and hopefully will show how it's done when successful. | This page documents different possible approaches and hopefully will show how it's done when successful. | ||
| My phone has a resolution of 1920 × 1080 pixels | |||
| ==Unsucessful Approaches== | ==Unsucessful Approaches== | ||
| ===Apps=== | ===Apps=== | ||
| If you are on Windows, you have some choices for apps: | If you are on Windows, you have some choices for apps, that may or may not come with their own limitations: | ||
| * [https://www.trinusvirtualreality.com Trinus VR] | * [https://www.trinusvirtualreality.com Trinus VR] | ||
| * [http://www.swatterco.com/vr_streamer.php VR Streamer] | * [http://www.swatterco.com/vr_streamer.php VR Streamer] | ||
| Line 20: | Line 22: | ||
| cardboard-vnc-free is also adding two viewports to the shared image, to fake a 3D. That's a show stopper, because I want to use the stereo mode in GEM. | cardboard-vnc-free is also adding two viewports to the shared image, to fake a 3D. That's a show stopper, because I want to use the stereo mode in GEM. | ||
| ===Gemwin remote host=== | ===Gemwin remote host=== | ||
| Line 52: | Line 47: | ||
|   error: JACKerror: JackClient::Execute error name = pure_data_2 |   error: JACKerror: JackClient::Execute error name = pure_data_2 | ||
|   error: JACK: server shut down |   error: JACK: server shut down | ||
| ===ffmpeg=== | |||
| Best overview on streaming with ffmpeg is to be found https://trac.ffmpeg.org/wiki/StreamingGuide#Pointtopointstreaming | |||
| ====udpvideo lite/ffmpeg==== | |||
| Since streaming to a VR-Headset with minimum latency is pretty much what you want with a live drone video this abandoned freeware app is doing exactly that: | |||
| [https://play.google.com/store/apps/details?id=com.imersiva.udpvideo udpvideo lite] | |||
| Then run on the desktop: | |||
| <tt>ffmpeg -f x11grab -video_size wxga -r 25 -i :0.0 -f mpjpeg udp://192.168.1.2:5678</tt> | |||
| ==Successful== | |||
| ===OBS/VLC=== | |||
| It works in OBS + VLC with this method https://obsproject.com/forum/resources/obs-studio-send-an-udp-stream-to-a-second-pc-using-obs.455/ but has a delay of a couple of seconds. | |||