Advertisement
metalx1000

Dance Ejay convert SCL file to WAV

Aug 24th, 2021
2,537
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. #Dance Ejay convert SCL file to WAV
  2. #splitting file at wave header
  3.  
  4. for file in *.scl
  5. do
  6.   echo $file
  7.   sed 's/RIFF/\nRIFF/g' Welcome.scl|sed '/RIFF/,$!d' > "wavs/${file%.*}.wav"
  8. done
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement