<div dir="ltr">Hi all,<div><br></div><div>really looking forward to my first FOSDEM ever! Can I say I'm excited AND scared as if it's my first day of school? :-)</div><div><br></div><div>I've heard of the call for volunteers about recordings of the presentations. Since I'm one of the presenters, I decided to come up with a simple way to record my own presentation. I'm pasting it below in case other presenters may choose to do the same for their own, if not just as a fallback in case other options fail:</div><div><br></div><div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div><font face="monospace, monospace">#!/bin/sh</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">SIZE="1024x768"</font></div><div><font face="monospace, monospace">FPS="25"</font></div><div><font face="monospace, monospace">COORDS=":0.0+1366,0"</font></div><div><font face="monospace, monospace">OUTPUT="fosdem16-devrtc-janus.webm"</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">ffmpeg -video_size $SIZE -framerate $FPS \</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre"> </span>-f x11grab -i $COORDS \</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">     </span>-f alsa -ac 1 -i pulse \</font></div><div><font face="monospace, monospace"><span class="" style="white-space:pre">            </span>$OUTPUT</font></div></div></blockquote></div><div><br></div><div>As you can see, it's a really dumb script that just uses ffmpeg/libav to record the desktop (in my case the screen to the right of my laptop, at 1366x0, as there's where the beamer will get my 1024x768 feed from) and the audio from the laptop microphone. There are probably other fancyer ways this could be done and in a better way (e.g., gstreamer videomixer and the like), but this seems like an easy and quick solution enough for recording slides and audio of the talk, which is probably all that matters (speaker video missing but I'm not that good looking anyway!). Should video be recorded some other way as well, the two might be mixed together ex post somehow.</div><div><br></div><div>I realize this is not actually a very general solution to the recordings requirement, but if you're going to present too and like the idea, feel free to re-use and/or improve/fix!</div><div><br></div><div>See you in Bruxelles!</div><div>Lorenzo</div></div>