Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # pth-prep, transcode and prepare torrents of a FLAC release
  4. # parazyd - (c) wtfpl
  5.  
  6. PASSKEY="${PASSKEY:-YOURPASSKEY}"
  7.  
  8. which whatmp3 >/dev/null || {
  9. printf "whatmp3 is not found\\n"
  10. exit 1
  11. }
  12.  
  13. flacdir="$@"
  14.  
  15. whatmp3 --320 --V0 -c -t "https://flacsfor.me/${PASSKEY}/announce" "$flacdir"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement