static bool playMp3WithSoftVolume(File mp3, float volume) ctex { if (!isJavaSoundOnly() && isLinux() && onPATH("play")) { //print("Playing MP3 (`play`)..."); backtick(print("> ", "play -v " + formatDouble(volume, 2) + " " + bashQuote(mp3))); true; } false; } static bool playMp3WithSoftVolume(S snippetID) { ret playMp3WithSoftVolume(loadLibrary(snippetID)); }