Last active
May 7, 2021 22:14
-
-
Save trytone/33e3753caed615c5a67b5283223071bb to your computer and use it in GitHub Desktop.
Stream Screen Capture Video From PC to NBOX 5800S Device using RTMP protocol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Replace all 192.168.0.2 with your local IP | |
NBOX 5800S: | |
1. Login to device by telnet/ssh and run "wget http://iptvplayer.pl/iptvinstaller.sh -O - | /bin/sh" | |
2. Run "echo 'streamPC; rtmp://192.168.0.2/view/test' > /hdd/urllist.txt" | |
3. Reboot device | |
4. "SETUP" button => "Plugins" => "IPTV Player" or "E2iPlayer" => All plugins (rubic cube icon) => Urllists player ( white document icon ) => All => streamPC | |
Windows 10: | |
Download NGINX with RTMP support from https://kernelmanic.com/wp-content/uploads/2015/12/nginx1.zip | |
Download UScreenCapture from https://www.videohelp.com/software/UScreenCapture | |
Download Virtual Cable from https://vb-audio.com/Cable/ | |
Download ffmpeg from https://github.com/BtbN/FFmpeg-Builds/releases | |
1. Run nginx.exe | |
2. ffmpeg -f dshow -rtbufsize 1024M -i video="UScreenCapture":audio="CABLE Output (VB-Audio Virtual Cable)" -c:v libx264 -r 25 -filter:v fps=25 -b:v 1M -bufsize 100M -preset ultrafast -c:a aac -b:a 128k -pix_fmt yuv420p -tune zerolatency -f flv rtmp://192.168.0.2/view/test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment