Jump to content

_SoundPause with sound on internet


FireFox
 Share

Recommended Posts

Hi,

I made script with sound in background, the sound launch with _SoundPlay like this :

_SoundPlay("http://d3monautoit.free.fr/music.mp3")

But I can't play,stop or pause sound for exemple :

#include <Sound.au3>

$snd=_SoundOpen("http://d3monautoit.free.fr/music.mp3")
_SoundPlay($snd)
Sleep(1000)
_SoundPause($snd)
Sleep(1000)
_SoundResume($snd)
Sleep(1000)
_SoundClose($snd)

Thanks for anyhelp !

Link to comment
Share on other sites

You need to save the file on your computer with InetGet().

#include <Sound.au3>

InetGet("http://d3monautoit.free.fr/music.mp3", @Tempdir & "\music.mp3")
$snd=_SoundOpen(@Tempdir& "\music.mp3")
_SoundPlay($snd)
Sleep(1000)
_SoundPause($snd)
Sleep(1000)
_SoundResume($snd)
Sleep(1000)
_SoundClose($snd)
FileDelete(@Tempdir & "\music.mp3")
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...