You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Nginx as an RTMP streaming bridge to HDMI, omxplayer used to enable this using an Nginx config like the following
rtmp {
server {
listen 1935;
application live {
# Enable livestreaming
live on;
# Disable recording
record off;
# Allow only this machine to play back the stream
allow play 127.0.0.1;
deny play all;
# Start omxplayer and play the stream out over HDMI
exec omxplayer -o hdmi rtmp://127.0.0.1:1935/live/$name;
}
}
}
THe key line relevant for this issue is exec omxplayer -o hdmi rtmp://127.0.0.1:1935/live/$name;
When using Nginx as an RTMP streaming bridge to HDMI, omxplayer used to enable this using an Nginx config like the following
THe key line relevant for this issue is
exec omxplayer -o hdmi rtmp://127.0.0.1:1935/live/$name;
For the full tutorial see:
https://aaronparecki.com/2020/09/07/7/raspberry-pi-streaming-server
Is there any way to achieve the same using VLC?
The text was updated successfully, but these errors were encountered: