ok, anyone who's been paying attention to the git commit logs, i've
been attempting to get video playback working, cross-browser.
i juuust managed to get IE6/7 to work using mediaplayer, as well as
HTML5 for everything else - the only problem is that different
browsers support DIFFERENT media types. there's not a lot that can be
done about that, so tough luck, you have to use platform-overrides.
i've also tracked down the ffmpeg commands required to convert to the
*four* different media types required, source filetype is .mov in each
case.
l.
hbcli = """ffmpeg -i %(name)s.mov \
-acodec libfaac -ab 96k \
-vcodec libx264 \
-level 21 -refs 2 -b %(rate)s -bt %(rate)s \
-threads 0 %(name)s.mp4"""
ffmp = """ffmpeg -i %(name)s.mov \
-acodec libvorbis -ac 2 -ab 96k -ar 44100 \
-b %(rate)s %(name)s.webm """
f2t = """ffmpeg -i %(name)s.mov \
-acodec libvorbis -ac 2 -ab 96k -ar 44100 \
-b %(rate)s %(name)s.ogv"""
f2t = "ffmpeg2theora -o %(name)s.ogv -v 9 %(name)s.mov"
fwm = """ffmpeg -i %(name)s.mov -vcodec wmv2 \
-trellis 2 -cmp 2 \
-b:v %(rate)s %(name)s.wmv"""