Android Debug Bridge
install android sdk
https://skarredghost.com/2018/05/09/how-to-get-started-with-oculus-go-on-unity/
https://skarredghost.com/2018/03/16/how-to-stream-mirror-your-vive-focus-to-an-external-display-or-computer/
stream vlc :
HD :
adb exec-out "while true; do screenrecord --bit-rate=16m --output-format=h264 --time-limit 180 -; done" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --demux h264 --h264-fps=60 --clock-jitter=0 -
SD :
adb exec-out "while true; do screenrecord --bit-rate=2m --output-format=h264 --time-limit 180 -; done" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" --demux h264 --h264-fps=60 --clock-jitter=0 -
stream mplayer :
adb exec-out "while true; do screenrecord --bit-rate=16m --output-format=h264 --time-limit 180 -; done" | "C:\Program Files\Mplayer\mplayer.exe" -demuxer h264es -fps 60 -fs -
connect via wifi :
adb shell ip addr show wlan0
ou
adb shell ip route
adb tcpip 5555
adb connect <OCULUS_GO_IP>:5555