How to setup Twitch RTMP Transcoding Server - Dual PC BEST QUALITY STREAMING GUIDE

Опубликовано: 13 Октябрь 2024
на канале: fixitfixitfixit
9,430
117

In this tutorial I show you how to setup your nginx-rtmp server to perform video transcoding on docker for linux. Perfect for youtube and twitch livestreaming.

Set up your own RTMP Transcoding Server Playlist
   • Setup a Dedicated Streaming Transcodi...  

FFMPEG ENCODE COMMAND LINK TO DOC
https://docs.google.com/document/d/e/...


The command if the doc is not working:
exec ffmpeg -i rtmp://127.0.0.1/yoursourcertmpstream -vcodec libx264 -framerate 60 -profile:v high -level:v 4.2 -tune film -preset veryfast -threads 0 -x264opts nal-hrd=cbr:force-cfr=1:keyint=120:qcomp=1.0:scenecut=0 -b:v 6000k -maxrate 6000k -bufsize 6200k -acodec copy -f flv rtmp://127.0.0.1/youroutputstream;