Tag: convert
Convert RAW files to JPEG
Convert RAW files to JPEG in batch. Convert all files in a folder using a command. For this to work, first you must have ‘ufraw’ package installed. sudo apt-get install ufraw
or sudo yum install ufraw
depending on your OS
Trim Image Edge
Use this command to cut off the edges off an image… convert -trim image.jpg output.jpg
Shell Script for Batch Convertion of Images
An easier way to batch convert images using the ‘convert’ command… #!/bin/sh # An Easy command to use the convert…
Batch Resize Image
Resize all JPG Files to 800×600 convert -sample 800×600 *.jpg output_file_name
Convent Video to 3gp(mobile) format
This command uses ffmpeg to convert a regular video into 3gp format thats used in mobile phones ffmpeg -i input_video.mp4…
Convert Bin/Cue Images to ISO Image using Linux Command
You can use this command to convert a Bin/Cue image to an ISO image in a linux system. You may…
Linux Command to Convert a Video to PSP’s MP4 Format
Linux command to convert a video file to PSP format using ffmpeg. After converting, copy the OutputFile to the video…
Script to Convert FLV to AVI
This will convert a flv file to a avi file. I got this off linux.com. It uses mencoder – so…
Convent Ico to Gif
This will convert all the ico files in the folder to gif. It uses the final frame of the ico…
Convert all Ico files to Gif
I had a collection of ico files with the ext gif – these are the commands I used to fix…
Recent Comments