you are in: codestackercodes [RSS] → tag: convert [RSS]

convert an ISO file to DMG format in terminal Delicious Email

show/hide lines
   1  hdiutil convert /path/imagefile.iso -format UDRW -o /path/convertedimage.dmg
created by leozera — 16 January 2011 — get a short url — tags: convert dmg iso mac embed

convert a DMG file to ISO in terminal Delicious Email

show/hide lines
   1  hdiutil convert /path/imagefile.dmg -format UDTO -o /path/convertedimage.iso
created by leozera — 16 January 2011 — get a short url — tags: convert dmg iso mac embed

batch convertion: ffmpeg avi -> mpg Delicious Email

show/hide lines
   1  #!/bin/sh
   2  for f in *.flv;
   3  do
   4  echo "Processing $f"
   5  ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg"
   6  done
created by leozera — 01 March 2009 — get a short url — tags: avi bash convert ffmpeg mpg embed