Bash Script Conversion from .avi to .mpg


#!/bin/bash
#This script is to lower the quality to save memory to watch movie / drama on your mobile.
for i in $(ls -1 *.avi); do
echo item: $i
ffmpeg -i $i -b 200k $i.mpg
done

Powered by Blogger.