Send this to a friend
1 hdiutil convert /path/imagefile.iso -format UDRW -o /path/convertedimage.dmg
hdiutil convert /path/imagefile.iso -format UDRW -o /path/convertedimage.dmg
Send this to a friend
1 hdiutil convert /path/imagefile.dmg -format UDTO -o /path/convertedimage.iso
hdiutil convert /path/imagefile.dmg -format UDTO -o /path/convertedimage.iso
Send this to a friend
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
#!/bin/sh
for f in *.flv;
do
echo "Processing $f"
ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg"
done