Skip to content

Update README.md #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Consider using Google Keep for easy copy-paste into the terminal if you want to
Full command for easy copy paste (Don't forget to put your ingest and streamkey in):

```
ffmpeg -loglevel warning -r 48 -fflags nobuffer -i "tcp://192.168.1.252:9000?listen=1" -c:v libx264 -x264opts keyint=96:no-scenecut -r 48 -b:v 6000k -minrate 6000k -maxrate 6000k -bufsize 4500k -profile:v baseline -tune zerolatency -frame_drop_threshold 5.0 -preset superfast -threads 16 -g 96 -keyint_min 48 -c:a copy -bsf:a aac_adtstoasc -flvflags no_duration_filesize -f flv " rtmp://{ingest}.contribute.live-video.net/app/{stream_key}"
ffmpeg -loglevel warning -r 48 -fflags nobuffer -i "tcp://192.168.1.252:9000?listen=1" -c:v libx264 -x264opts keyint=96:no-scenecut -b:v 6000k -minrate 6000k -maxrate 6000k -bufsize 4500k -profile:v baseline -tune zerolatency -frame_drop_threshold 5.0 -preset superfast -threads 16 -g 96 -keyint_min 48 -c:a copy -bsf:a aac_adtstoasc -flvflags no_duration_filesize -f flv "rtmp://{ingest}.contribute.live-video.net/app/{stream_key}"
```

| Setting | Notes |
Expand All @@ -110,7 +110,7 @@ ffmpeg -loglevel warning -r 48 -fflags nobuffer -i "tcp://192.168.1.252:9000?lis
| `-c:a copy` | Just copy the audio stream as is. No decoding necessary. |
| `-bsf:a aac_adtstoasc` | Or so we thought. mpegts container requires we do a bit of work on our audio before sending it |
| `-flvflags no_duration_filesize` | Remove unnecessary header info to cleanup debug logs a bit |
| `-f flv " rtmp://{ingest}.contribute.live-video.net/app/{stream_key}` | Send our output to a Twitch ingest server. https://stream.twitch.tv/ingests/ This is also where your stream key goes. |
| `-f flv "rtmp://{ingest}.contribute.live-video.net/app/{stream_key}` | Send our output to a Twitch ingest server. https://stream.twitch.tv/ingests/ This is also where your stream key goes. |


#### Main Rig OBS Setup
Expand Down