2013-08-09

How to extract MP3 audio from ASF in Linux environment

COMMAND :
for files in $(ls); do avconv -i $(files) -vn -acodec wmav2 -f asf ${files:0:2}".mp3"; done

If FILES are
01.asf
02.asf
03.asf

No comments:

Post a Comment