I needed an easy way to download videos I streamed to Twitch.tv, so I created this small script which downloads all parts of the video, converts them to mpegts and then combines them into a single mpeg flv video, ready for upload to YouTube.
#!/bin/bash
video_dir=~/twitch
if [ $# -ne 1 ]; then
[...]