Posted By

dreamlusion on 08/26/09


Tagged


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

nofuseto


FLV to WAV


 / Published in: Bash
 

flv to wav script using VLC Media Player

  1. #!/bin/bash
  2. echo Hi!
  3. for f in *; do
  4. if [ -f "$f" ]; then
  5. if [ ${f#*.} = "flv" ]; then
  6. vlc -vvv $f :sout=#transcode\{acodec=s16l,ab=192,channels=2\}:duplicate\{dst=std\{access=file,mux=wav,dst=${f%.*}.wav\},select=novideo\}
  7. fi
  8. fi
  9. done

Report this snippet  

You need to login to post a comment.