Puede transmitir directamente a una dirección RMTP utilizando ffmpeg
o avconv
siempre que tenga la autenticación necesaria (clave de transmisión).
Un ejemplo condensado de uso ffmpeg
para transmitir al servidor Twitch.tv RMTP sería el siguiente:
# stream key. You can set this manually.
STREAM_KEY=$(cat ~/.twitch_key)
# stream url. Note the formats for twitch.tv and justin.tv
# twitch:"rtmp://live.twitch.tv/app/$STREAM_KEY"
# justin:"rtmp://live.justin.tv/app/$STREAM_KEY"
STREAM_URL="rtmp://live.twitch.tv/app/$STREAM_KEY"
ffmpeg \
-f alsa -ac 2 -i "pulse" \
-f x11grab -s $(xwininfo -root | awk '/geometry/ {print $2}'i) -r "30" -i :0.0 \
-vcodec libx264 -pix_fmt yuv420p -s "640x360" -vpre "fast" \
-acodec libmp3lame -threads 6 -qscale 5 -b 64KB \
-f flv -ar 22050 "$STREAM_URL"
Para obtener más información sobre cómo transmitir a plataformas populares como twitch.tv y justin.tv, consulte esta respuesta de askubuntu .
Puede encontrar una idea general de una versión extendida del script anterior aquí:
https://gist.github.com/oseparovic/2db2aaa737cd37e7c068