aboutsummaryrefslogtreecommitdiff
path: root/twitch-stream.sh
blob: 28d0eb1e9cc6f21fdb7f55867b70378171aa823d (plain)
1
2
3
4
5
#!/bin/sh

[ "$#" -ne 3 ] && echo "usage: twitch-stream.sh <window_id> <fps> <livestream_key>" && exit 1
active_sink="$(pactl get-default-sink).monitor"
./gpu-screen-recorder -w "$1" -c flv -f "$2" -a "$active_sink" | ffmpeg -i pipe:0 -c:v copy -f flv -- "rtmp://live.twitch.tv/app/$3"