This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pip install --upgrade openunmix youtube-to-mp3 | |
sudo apt install sox | |
mp3=$(yturl2mp3 $1 | grep "Writing audio in" | sed -e "s/.*audio in //g") | |
flac=$(echo $mp3 | sed -e "s/.mp3/.flac/") | |
sox "$mp3" "$flac" | |
umx --no-cuda "$flac" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Demo |