Posts

Showing posts from October 18, 2009

libMagickCore.so.1 No such file or directory

ImageMagick is such a very cool tool for editing/modifying images through shell. However, when I ran out of trouble encountering the problem like, example running the "convert" (one of the ImageMagick tools)command: $> convert test.png test.pdf convert: error while loading shared libraries: libMagickCore.so.1: cannot open shared object file: No such file or directory and doing: $> locate libMagickCore.so.1 /usr/lib/libMagickCore.so.1 which means, it does exist. In order to fix this, just run: $> ldconfig and everything will solve the problem! Hope this helps!

Make Youtube or AVI Movies to DVD in Linux

Tools I did download: - ffmpeg - Dvdauthor - dvd+rw-tools - transcode - Mjpegtools - mplayer I installed library dependencies which are libdvdread, libdvdcss, libquicktime, amrwb, libdc1394, libgsm, x264, libraw1394, and libmpeg2. I use the online downloader http://online.movavi.com/ and enables me to download the "flv" file format of the file. Afterwards I use ffmpeg to convert the file from flv to avi with this command. $> ffmpeg -i video.flv -y -f avi -b 1150 -s 320x240 -r 29.97 -g 12 -qmin 3 -qmax 13 -ab 224 -ar 44100 -ac 2 -acodec libmp3lame -target dvd youtube_movie.avi Afterwards, I use transcode to convert my avi files to mc3 and m2v format where the audio and video are being separated. I use the command to convert it through: $> transcode -i youtube_movie.avi -y ffmpeg --export_prof dvd-ntsc --export_asr 3 -o movie -D0 -N 0x55 -s2 -m movie.ac3 -J modfps=clonetype=3 --export_fps 29.9 -f 3 The fps of 29.9 can be set manually. I set that since i was trying hard t