OBS local stream into iTunes

Rubin2

New Member
Hi all,

First of all, as it's my first post here, apologies if I am asking super dumb question, I just can't seem to properly set this up!

So the thing I am trying to do is to:
a) set up OBS stream locally
b) connect to that stream on iTunes so that I can use the visualiser there

I've been using nginx to set up local server and so far I've been able to set up a stream and connect to it through VLC using url rtmp://127.0.0.1:1095/stream/test with the same set up in OBS in the "stream" setting.

When I choose to stream to rtmp://127.0.0.1:1095/hls/test I can see that the files are appearing in the folder so it seems to work well.

Now when I try to connect to that stream in iTunes I pick url: http://127.0.0.1:8085/hls/temp.m3u8 but nothing happens....

Any ideas or any good soul to help me with that?

Much appreciated!

Thanks


NGINX config file:
# user nobody;
# multiple workers works !
worker_processes 2;

error_log logs/error.log info;

events {
worker_connections 8192;
}

rtmp {
server {
listen 1935;
application live {
live on;

}

application stream {
live on;

record off;
meta copy;

#Youtube
# push rtmp://a.rtmp.youtube.com/live2/<STREM KEY>;

#Facebook
# push rtmp://127.0.0.1:19350/rtmp/<STREM KEY>;
}

application hls {
live on;
hls on;
hls_path temp/hls;
hls_fragment 8s;
}
}
}

http {
include mime.types;
default_type application/octet-stream;

sendfile off;
server_names_hash_bucket_size 128;
client_body_timeout 10;
client_header_timeout 10;
keepalive_timeout 30;
send_timeout 10;
keepalive_requests 10;



server {
listen 8085;
server_name 127.0.0.1;
location / {
root html;
index index.html index.htm;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
 
Top