I would like to know how I can send the desktop screen of the Windows computer to be viewed in an Android TV box.
(Similar to VNC)
I found some tips:
To stream your Desktop to a remote machine do the following:
First install VLC on the source (desktop you want to stream) as well as the machine that you want to watch the desktop on.
Then from command prompt (sorry as far as I know this is command prompt only) go to the directory where VLC is installed and run the following command (change the IP address to the machine you want to stream too)
Code: Select all
vlc screen:// :screen-fps=30 :screen-caching=100 --sout '#transcode{vcodec=mp4v,vb=4096,acodec=mpga,ab=256,scale=1,width=1280,height=800}:rtp{dst=192.168.1.2,port=1234,access=udp,mux=ts}'
Source: http://ifoundthesolution.blogspot.com/2 ... g-vlc.htmlOn the Destination machine do the following:
open VLC,
Goto File/Open Network Stream and by default the Media Resource Locator on top of the window should read udp:// and UDP/RTP with port 1234 should be selected. If it's not select UDP/RTP (option 1) and put 1234 as the port number. Press Okay and you should see the video stream from the other machine (your server machine).
Code: Select all
vlc.exe screen:// :screen-fps=30 :screen-caching=100 --sout '#transcode{vcodec=mp4v,vb=4096,acodec=mpga,ab=256,scale=1,width=1280,height=800}:standard{access=http, mux=ts, dst=192.168.0.1:8080}'
If possible, please explain step by step. (Only for LAN)
(The Android app interface does not offer many options)
I've already tried using VNC and it worked, but updating the image is very slow.
I would like to test with a direct video stream, without additional functions such as audio and keyboard and mouse inputs. Maybe when sending only the video the screen update will be faster.
Thank you.