Advertisement
seiburii

bash substitution - Stepmania song ffmpeg convert

Oct 19th, 2020
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. ./WIP_-_All_Others/Trapped In The Drive-Thru_-_Weird_Al_Yankovic/'Weird Al' Yankovic - Trapped In The Drive-Thru (Official Video)-SHnTocdD7sk.m4a
  2.  
  3.  
  4. ${line##.*/} - filename
  5. 'Weird Al' Yankovic - Trapped In The Drive-Thru (Official Video)-SHnTocdD7sk.m4a
  6.  
  7.  
  8. ${line%/*} - folderpath
  9. ./WIP_-_All_Others/Trapped In The Drive-Thru_-_Weird_Al_Yankovic
  10.  
  11.  
  12. ffmpeg -hide_banner -i "$line" -c:a libmp3lame -b:a 128k "$FOLDERNAME/${FNAME// /_}"
  13.  
  14.  
  15. while read line; do FNAME=$(echo ${line##.*/}); FOLDERNAME=$(echo ${line%/*}); ffmpeg -hide_banner -i "$line" -c:a libmp3lame -b:a 128k "$FOLDERNAME/${FNAME// /_}.mp3" ;done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement