Music Streaming - Forum

Forum Navigation
You need to log in to create posts and topics.

Music Streaming

Hi, does anyone have an example of streaming an mp3 from a url with a media player interface.

I can do it with local files on the hard disk but not streaming

Thank you in advance.

does this not work??

DownloadFile "http://www.someurl.com.mysound.mp3" "[pubdir]mysound.mp3" ""
PlaySoundFile "[pubdir]mysound.mp3" "Normal"

Nevermind you said streaming. my bad

This worked for me

Run "[ProgramFiles]Windows Media Player\wmplayer.exe" "http://www.mazzacom.com/files/eee_uhh.mp3" "Normal" "" ""

If you dont want the player window to open you can run it hidden and add an event to close the app

Button 1

Run "[ProgramFiles]Windows Media Player\wmplayer.exe" "http://www.mazzacom.com/files/eee_uhh.mp3" "Hidden" "" "[player]"

Button 2

CloseApp "[player]" "ForceClose"

Hope that helps. Be careful to invoke the CloseApp action before you close the application. Otherwise you'll have to ctrl alt delete and end the process.

Vadim has reacted to this post.
Vadim