I'm working with Sikuli, which (I think) is build on Jython. I want to make a script that does a small gentle beep to attract the user's attention. (This is on Windows.)

How can I do this? I see that the winsound module is not available on Jython.

(Note that I want to use the sound card, not the built-in beeper.)

link|improve this question

75% accept rate
3  
FYI, the standard way of getting a user's attention in Windows is to flash the taskbar; playing a sound is annoying. – Glenn Maynard Nov 2 '10 at 14:52
Thanks. The customer asked for a beep. – Ram Rachum Nov 2 '10 at 17:56
Sound is anything but simple, regardless of the O/S or language environment. In Jython, you are using the Java environment so that is where you should look for anything out of the ordinary. – Michael Dillon Feb 14 '11 at 1:15
feedback

3 Answers

If its Jython, then just use any of the Java classes that play sound. There are tons of them.

from java import net
from java.applet.Applet import newAudioClip
from java import io
url = io.File("fileName").toURL()
audio = newAudioClip(url)
audio.play()

import sun.audio
import java.io
inputStream = java.io.FileInputStream("test.wav")
audioStream = sun.audio.AudioStream(inputStream)
sun.audio.AudioPlayer.player.start(audioStream)

link|improve this answer
Any way to do that without dealing with a file? Like, doing a sine wave or something? I'm completely ignorant in Java. – Ram Rachum Nov 2 '10 at 17:57
Sure is, loop over: amplitude * (math.sin(frequency * 2 * math.pi * count) to produce a sin wave where count is the time step. As you iterate, save the result, and you will have essentially an array of raw sound data. Do with it what you would like. – user489041 Nov 2 '10 at 19:10
Damn, it says cannot import name newAudioClip. Probably it's not included with Sikuli. Any clue what to do? – Ram Rachum Nov 5 '10 at 11:33
Hmm, Try giving the second example a shot. Let me know if that works. – user489041 Nov 5 '10 at 14:04
feedback

You may do the fllowing using command line:

Execute "copy con beep.txt" type [ctrl+G] as input and then [ctrl+Z] followed by [Enter] to exit

Then run "type beep.txt" and you will hear a beep.

You may place "type beep.txt" in a batch file or use Ctrl+G directly in batch (which would produce error in command line with sound)

link|improve this answer
feedback

Since you are using Sikuli you can to the following.

Add any mediafile such as any .mp3 on the desktop of a windows machine, asociate the file to a media player. Capture the image and include:

click(pattern(desktopnoiseicon.png)

alternatley you could execute the same task with openApp(C:\noise.mp3)

Sikuli gives the ability to find numerous workarounds

in SikuluXrc2 you could even point to a URL from your code without the need of setting a bundle path

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.