This is for the play Season's Greetings.
http://www.milltheatre.com/shows/seasons-greetings
http://www.facebook.com/group.php?gid=6065036825
http://en.wikipedia.org/wiki/Season%27s_Greetings_(play)
http://seasonsgreetings.alanayckbourn.net/
I'm recording sounds with my mobile phone (Nokia E65). Converting sounds and vids with ffmpeg.
Ubuntu jaunty default ffmpeg kindof did amr to wav or ogg. But didn't mostly. I first tried ffmpeg source + older amr codecs with licencing problems. Found ffmpeg now uses libopencore. AND actually also I have the older amr codecs installed already as ubuntu packages anyway. Anyway fresh built ffmpeg converts all amr ro wav or ogg.
So 15/Nov/2009 how to get ffmpeg working a bit better with amr format:
http://opencore-amr.sourceforge.net/
tar -zxvf opencore-amr-0.1.2.tar.gz
cd opencore-amr-0.1.2/
less README
./configure --prefix=/usr/local
make
sudo make install
cd ../
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg-svn
cd ffmpeg-svn
./configure --prefix=/usr/local --enable-gpl --enable-pthreads --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb
make
sudo make install
# if you install in /usr/local you'll need to set the LIBRARY path:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
# This converts all .amr files in dir to .ogg (and doesn't do it if already done)
for F in *.amr ; do
echo F=$F;
N=${F%%.amr};
if [[ ! -e $N.ogg ]] ; then
ffmpeg-amr -i "$F" "$N.ogg";
fi;
done
Songs of the 80s.
http://www.afn.org/~afn30091/
Also. VLC crashes if try to do things with playlist?
Individual VLCs are fine open and playing together which is what is wanted.
No comments:
Post a Comment