Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Bash

Visibility

unlisted

Author

legacy-anonymous

Created

2016-05-27T13:17:38Z

Updated

2016-05-27T13:17:38Z

#!/bin/bash
avconv \
  -f x11grab \
  -s 1920x1080 \
  -r 30 \
  -i :0.0 \
  -an \
  -c:v libx264 \
  -preset veryfast \
  -pix_fmt yuv420p \
  -threads 2 \
  -b:v 1M \
  -f flv \
  'rtmp://<ip>/live/<stream name>'
INFO