Giter VIP home page Giter VIP logo

Comments (2)

Noxalus avatar Noxalus commented on May 24, 2024

Hello,

There is an example in the nginx.template.conf file (line 61).

By default, the resolution and quality transmit to the services is the one you broadcast from your PC, but there is an example where the stream is re-encoded on the fly by FFMpeg for Twitch:

# Send the default resolution and quality to Youtube
push rtmp://localhost/youtube/${name};

# Stream re-encoded by FFMpeg for Twitch
exec ffmpeg -i rtmp://localhost/$app/$name -c:v libx264 -preset veryfast -c:a copy 
    -threads 2
    -c:v libx264
    -profile:v main
    -preset:v veryfast
    -level 4.2
    -b:v 2000k
    -bufsize 2000k
    -maxrate 2000k
    -s 1280x720 -r 30
    -g 120 -keyint_min 60 -x264opts "keyint=120:min-keyint=120:no-scenecut"
    -tune zerolatency
    -c:a copy
    -f flv rtmp://localhost/twitch/${name};

FYI, back in the day, I struggled a lot to know what was wrong with my changes in the Nginx configuration file until I found a command that can tell you if your config is valid or not (here). It could be useful 😄

from multi-streaming-server.

jellykells avatar jellykells commented on May 24, 2024

Bless you, Noxalus.

You just saved me after 3 hours of troubleshooting torture. Not only did I not realize that section was only for Twitch, but I also have no idea how I screwed that part up... That command you linked probably would have helped.

I have it working with both Twitch and YouTube now. Thank you!

from multi-streaming-server.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.