Record your screencasts as movie files (.mov) using quicktime.
- Install yasm http://yasm.tortall.net/Download.html
- Install libvpx https://code.google.com/p/webm/downloads/list
- Install https://www.ffmpeg.org/download.html
- Add the libvpx flag:
./configure --enable-libvpx
Convert .mov files to .webm with ffmpeg
ffmpeg -i cast.mov cast.webm
Embedding videos is easy. MDN <video> tag reference
<video src="cast.webm" autoplay loop="true">
Sorry, your browser doesn't support embedded videos,
but don't worry, you can <a href="cast.webm">download it</a>
and watch it with your favorite video player!
</video>
This is the general process on unix systems
wget filename.tar.gz
tar -xvf filename.tar.gz
cd filename
./configure
make
make install
Thanks! It was really helpful.
I used brew to install all needed packages.