Posts Tagged ‘convert’

Prepare videos for DVD authoring

If you need for some reason prepare mpeg files for DVD outside of DVD authoring application, here are two commands which can help you a lot. Option 1 – ffmpeg for i in *.mkv; do name=`echo $i | cut -d’.’ -f1`; echo $name; ffmpeg -i $i -target pal-dvd -r 25 -s 720×576 -aspect 16:9 -b […]

More »

Easy converting PNG, JPG and other image formats to PDF

Easiest way to convert over 100 image formats to PDF is using ImageMagick. To install type in terminal: sudo apt-get install imagemagick Convert image to pdf: convert source.png target.pdf Merge all images in folder to one PDF file: convert *.jpg target.pdf For more info enter convert -man

More »

Convert .nrg (Nero image) to .iso file in Ubuntu

If you want to convert .nrg file to .iso file you can use nrg2iso tool to create this. nrg2iso is a program that extracts ISO9660 data from Nero “.nrg” CD-ROM image files. Install nrg2iso in Ubuntu sudo apt-get install nrg2iso

More »