Não. Na verdade, você deve transmitir para o nginx-rtmp via protocolo RTMP.
ffmpeg -f x11grab -i :0.0 -vcodec libx264 -b:v 1024k -an -f flv rtmp:/192.168.1.68/live/test
E você deve adicionar algo assim ao nginx.conf
http {
...
server {
...
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
}
root /tmp;
add_header Cache-Control no-cache;
}
}
...
}
Em seguida, configure seu player para transmitir o URL de origem http://192.168.1.68/hls/test.m3u8
Boa sorte.