HomePage » MultiMedia
MultiMedia Stuff
Imaging
ripping dvd
AcidRip and HandBrake are excellent rippers. To rip dvd's with css encryption:aptitude install libdvdread /usr/share/doc/libdvdread4/install-css.sh
Linux rip cd to wav/cue
cdrdao read-cd --read-raw --datafile chan.bin --device 3,0,0 chan.cue
Linux rip cd to flac
aptitude install mkcue abcde -oflac -j2 -amove,cue
Linux rip cd to compressed format
Use abcde - http://www.everyjoe.com/newlinuxuser/abcde-your-command-line-cd-ripper/aptitude install abcde id3v2 abcde -j2 -omp3 -qhigh
Config file for using mp3 encoding - http://www.andrews-corner.org/abcde.html#mp3
Linux flac to cd
aptitude install flac sox
for i in ./*.flac; do flac -c -d $i | sox - ${i//flac/cdr}; done
cdrecord -v dev=3,0,0 driveropts=burnfree -dao -pad -overburn -audio ./*.cdrConvert MP2 to MP4
This ffmpeg doesn't have mp3 / x264 support.. need to figure that part out someday..ffmpeg -i AVSEQ03.DAT -b 1500k -vcodec mpeg4 -ab 224k -acodec mp2 -threads 2 part3.avi
Enable other encoders for ffmpeg:
Download ffmpeg source from http://ffmpeg.org/download.html
./configure --enable-libfaac --enable-libfaad --enable-libmp3lame \ --enable-libvorbis --enable-libx264 --enable-libxvid --enable-libdc1394 \ --enable-vdpau --disable-ipv6 --enable-swscale --enable-avfilter \ --enable-pthreads --enable-x11grab --enable-libopenjpeg --enable-gpl
After that, I can create x264/mp3 avi
ffmpeg -i foo.mpg -b 1500k -vcodec libx264 -ab 224k -acodec libmp3lame -threads 2 foo.avi
There are no comments on this page. [Add comment]