* FOSDEM: Talk Recordings
@ 2009-02-05 19:23 Andrew John Hughes
0 siblings, 0 replies; only message in thread
From: Andrew John Hughes @ 2009-02-05 19:23 UTC (permalink / raw)
To: classpath, kaffe, java, discuss, devjam
[-- Attachment #1: Type: text/plain, Size: 1399 bytes --]
Hi all,
I'll be bringing along my video camera again, all things permitting.
Previous recordings can be seen on http://fuseyism.com/
Unfortunately, things so far haven't gone as I'd like. I've been
unable to get hold of more tapes for recording talks, so I'll be
bringing my laptop with firewire along and hoping a combination of
four tapes and a hard disc will get me through... Help would be
appreciated, even if it's just making sure I have some power and an
unblocked view of the speaker :D It would be nice to get these online
ASAP, so if you have some spare cycles during FOSDEM and want to
encode one of the movies, please let me know. The originals are in DV
format and I encode to three sizes of Ogg Theora (a nice little script
I have will do this for you, provided you have ffmpeg2theora on your
box and optionally mplayer/speex for an audio track -- see
attachment).
If you particularly want your talk recorded, please let me know.
Alternatively, if for some reason you'd rather not have it recorded,
let me know as well.
Thanks, and see you all at FOSDEM,
--
Andrew :-)
IcedTea/OpenJDK Software Engineer
Red Hat, Inc. (http://www.redhat.com)
Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
[-- Attachment #2: encode --]
[-- Type: application/octet-stream, Size: 812 bytes --]
#!/bin/sh
DV=$1
OUT=$2
TITLE=$3
AUTHOR=$4
LOCATION=$5
ORGANISATION=$6
echo Encoding $DV to $OUT
cat $DV | ffmpeg2theora -f dv -o $OUT.ogg --optimize --aspect 16:9 --location "$LOCATION" --organization "$ORGANISATION" -
echo Encoding $DV to $(echo $OUT)_med.ogg
cat $DV | ffmpeg2theora -f dv -x 352 -y 288 -o $(echo $OUT)_med.ogg --optimize --aspect 16:9 --location "$LOCATION" --organization "$ORGANISATION" -
echo Encoding $DV to $(echo $OUT)_low.ogg
cat $DV | ffmpeg2theora -f dv -x 176 -y 144 -o $(echo $OUT)_low.ogg --optimize --aspect 16:9 --location "$LOCATION" --organization "$ORGANISATION" -
echo Encoding audio stream of $DV to $OUT.wav
mplayer -ao pcm:file=$OUT.wav -vc null -vo null -demuxer rawdv $DV
speexenc -V --vbr --denoise --dtx --agc --author "$AUTHOR" --title "$TITLE" $OUT.wav $OUT.spx
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-05 19:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-05 19:23 FOSDEM: Talk Recordings Andrew John Hughes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).