/ Published in: Bash
flv to mp3 conversion script using VLC Media Player
Expand |
Embed | Plain Text
#!/bin/bash echo Hi! for f in *; do if [ -f "$f" ]; then if [ ${f#*.} = "flv" ]; then vlc -vvv $f :sout=#transcode\{acodec=mp3\}:duplicate\{dst=std\{access=file,mux=raw,dst=${f%.*}.mp3\},select=novideo\} fi fi done
You need to login to post a comment.
