diff --git a/PirateRadio.py b/PirateRadio.py index f99ebf7..809db95 100755 --- a/PirateRadio.py +++ b/PirateRadio.py @@ -157,7 +157,7 @@ def setup(): def run_pifm(use_audio_in=False): global fm_process with open(os.devnull, "w") as dev_null: - fm_process = subprocess.Popen(["/root/pifm","-",str(frequency),"44100", "stereo" if play_stereo else "mono"], stdin=music_pipe_r, stdout=dev_null) + fm_process = subprocess.Popen(["./pifm","-",str(frequency),"44100", "stereo" if play_stereo else "mono"], stdin=music_pipe_r, stdout=dev_null) #if use_audio_in == False: #else: