# WMV -> MP4 # 비트레이트는 2M # 소리는 aac for f in *.wmv; do avconv -i "$f" -c:v libx264 -c:a aac \ -b:v 2M -strict experimental "${f%.wmv}.mp4"; done