/ Published in: Bash
flv to wav 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=s16l,ab=192,channels=2\}:duplicate\{dst=std\{access=file,mux=wav,dst=${f%.*}.wav\},select=novideo\} fi fi done
You need to login to post a comment.
