Hey Guys,
I'm completely new to the use of two pc streaming setup, but decided to try my hand. I used the guide written by Jack0r here. After setting up the server and starting to stream, I seem to have a problem with the transcoding the stream. The server is receiving my transmission, but is not sending it to twitch. Below, I've included my configuration code for the server, just in case I'm missing something. Any help you all could give me would be appreciated.
rtmp {
server {
listen 1935;
chunk_size 4096;
application transcode {
live on;
record off;
exec avconv -i rtmp://gaming machine ip:1935/transcode/test -c:v libx264 -profile:v main -preset faster -cbr_quality 10 -re -crf 23 -r 30 -g 60 -b:v 3500k -maxrate 3500k -minrate 3500k -bufsize 7000k -acodec copy -vf crop=1920:1080:0:0 -af "volume=10dB" -f flv rtmp://gaming machine ip:1935/live/test;
}
application live {
live on;
record off;
push rtmp://live-lhr.twitch.tv/app/YOUR_TWITCH_STREAM_KEY;
}
}
}
I'm completely new to the use of two pc streaming setup, but decided to try my hand. I used the guide written by Jack0r here. After setting up the server and starting to stream, I seem to have a problem with the transcoding the stream. The server is receiving my transmission, but is not sending it to twitch. Below, I've included my configuration code for the server, just in case I'm missing something. Any help you all could give me would be appreciated.
rtmp {
server {
listen 1935;
chunk_size 4096;
application transcode {
live on;
record off;
exec avconv -i rtmp://gaming machine ip:1935/transcode/test -c:v libx264 -profile:v main -preset faster -cbr_quality 10 -re -crf 23 -r 30 -g 60 -b:v 3500k -maxrate 3500k -minrate 3500k -bufsize 7000k -acodec copy -vf crop=1920:1080:0:0 -af "volume=10dB" -f flv rtmp://gaming machine ip:1935/live/test;
}
application live {
live on;
record off;
push rtmp://live-lhr.twitch.tv/app/YOUR_TWITCH_STREAM_KEY;
}
}
}
Last edited: