2020-03-30 19:21:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-04-02 21:43:56 +00:00
|
|
|
[ "$#" -ne 4 ] && echo "usage: twitch-stream.sh <window_id> <fps> <audio_input> <livestream_key>" && exit 1
|
2022-01-30 22:24:20 +00:00
|
|
|
./gpu-screen-recorder -w "$1" -c flv -f "$2" -a "$3" | ffmpeg -i pipe:0 -c:v copy -f flv -- "rtmp://live.twitch.tv/app/$4"
|