Updated FFmpeg recording and live streaming (markdown)

Themaister 2012-12-10 07:04:21 -08:00
parent 99ab7264e0
commit 58ab43ee54
1 changed files with 22 additions and 1 deletions

@ -39,4 +39,25 @@ The recognized config options are:
audio_bit_rate = <bitrate> # Audio bit rate (CBR). This is in bit/s, so use e.g. 192000 for 192 kb/s.
video_{option} = <value> # Sets generic video option {option} to <value>. This is codec specific. Mostly useful for libx264.
audio_{option} = <value> # Sets generic audio option {option} to <value>. This is codec specific.
audio_{option} = <value> # Sets generic audio option {option} to <value>. This is codec specific.
## Live streaming
RetroArch can live stream to RTMP services like [twitch](http://www.twitch.tv/).
To live stream there. Create a config that is tailored for twitch. Example:
vcodec = libx264
acodec = libmp3lame
pix_fmt = yuv420p
scale_factor = 2
threads = 3
video_crf = 25
video_preset = superfast
video_tune = animation
audio_global_quality = 75
sample_rate = 44100
format = flv
Now you can stream to twitch with a command like:
retroarch --record rtmp://live.twitch.tv/app/$YOUR_TWITCH_ID --recordconfig twitch.cfg