#!/bin/bash

# ffmpeg does not seem to have a 'quiet' flag to make it shut up on 
# stderr,this is a workaround
exec 2>/dev/null
exec ffmpeg $*
