It's my Live is a live streaming app made with FLutter. Compatible with RTMP and SRT.
Enter URL and KEY in App. Note that the KEY changes each time the button is pressed.
RTMP
e.g. rtmp://xxxx/test/abcd
URL = rtmp://xxxx/test
KEY = abcd
SRT URL = srt://xxxx:5000
URL = rtmp://(pc_ip):1935/live KEY = live
Modify nginx.conf file /etc/nginx/nginx.conf
rtmp {
server {
listen 1935;
chunk_size 4096;
access_log /var/log/rtmp_access.log;
application live {
live on;
record off;
}
}
}
RTMP
PC (need nginx)
ffplay -i "rtmp://0.0.0.0:1935/live/live"
It's my Live
URL = rtmp://(pc_ip):1935/live
KEY = live
SRT
PC
ffplay -i "srt://0.0.0.0:5000?mode=listener"
It's my Live
URL = srt://(pc_ip):5000
📁 ItsMyLive
📁 mylive_libraly
mylive_libraly is required to build ItsMyLive.


