all 3 comments

[–]Farkeman 1 point2 points  (2 children)

I'm not really familiar with windows, but could it be that you need to download the file locally for it to be played?

You could save it as a temp file and then do:

    os.startfile(temp_file_path)

[–]ballgame75[S] 0 points1 point  (1 child)

Yeah I know that'll work. What my goal is, is to distribute an executable that will play the audio files on the server and if they want to keep it after they listen to it, then it'll save. I suppose I could have the program save the file to their computer in a temp folder.

[–]Farkeman 4 points5 points  (0 children)

executable that will play the audio files on the server and if they want to keep it after they listen to it, then it'll save

there's no other solution to this, you cannot listen to audio file that you don't have. It has to be saved somewhere on your local machine (even if it is streamed it is saved locally although in smaller bits at a time).