Just thought I would pass it along to others. We might want to create a
page on the wiki with this stuff. But its all over the net just the
same. I will leave usage up to your imagination :)

#!/bin/bash

IFS=$'\n'
FILES=$(ls *.flv)

for file in ${FILES}; do
        echo converting: "${file}"
        ffmpeg -i "${file}" -acodec libmp3lame -ac 2 -ab 192k -vn 
"${file/.flv/.mp3}"
done

-- 
William L. Thomson Jr.
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


---------------------------------------------------------------------
Archive      http://marc.info/?l=jaxlug-list&r=1&w=2
RSS Feed     http://www.mail-archive.com/[email protected]/maillist.xml
Unsubscribe  [email protected]

Reply via email to