|
Hi, that's the code
play sound [soundSh play]; later stop sound (not pause!) [soundShe stop]; later play sound again [soundSh play];
fixed, i call sound int again ...
Started by nil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll need to recreate the sound.
However, if you could dispose of the sound using AudioServicesDisposeSystemSoundID, which will stop the sound.
I am not sure why your example code isn't working .
|
|
How to get correct driver for old sound card....I don't know brand and model no of sound card...
My os is windows XP 32 bit.
Sound card is external cad and it's attached to motherboard.
Started by Jitendra vyas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Etc, and links to contact for the driver (or to help you google) Haven't tested with external sound.
|
|
EDIT: Ok, this post seems to have scared some off because of its length, let me try again:
Using ONE Sound() object in Actionscript3, how can I play a one MP3 and then, when the user chooses a different one, play a second sound, using the SAME Sound()...
Started by Moshe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To load a different sound file, create a new Sound....
Once load() is called on a Sound object, you can't later load a different sound file into that Sound object.
You cannot use same Sound object to play multiple files .
|
Ask your Facebook Friends
|
Problem: Great graphics, nice app. But no sound. I want sound.
UPDATE: All cleared now. Soundsnap.com does not exclude iPhone apps. Tasos Frantzolas responded that there are no copyright problems with sounds on soundsnap.com.
There has been a misunderstanding...
Started by Thanks on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
After submission, our team listens to each sound making sure they don't infringe anyone's copyright for sources that people producing movies would use - here's a large list of sound effect libraries including commercial options:
http:/....
|
|
I've seen many web pages with a simple sound on /sound off button which plays music or some mp3 file when you press sound on and turns it off when you press off.
How do I do that?
Hi, I wasn't planning on using Flash -- if there is a standard plugin I...
Started by Angela on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Initialization:
var sound:Sound; var channel:SoundChannel; var pos:Number; var numLoops:Number = 0; // 0 to loop forever sound = new Sound(); sound.load( new URLRequest("song.mp3") ); channel, but this leaves needless....
It in AS3.
|
|
So I have an image like this
Is there any algorithm to extract (get as PCM) sound from which was created that image?
Started by Ole Jak on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In case you're wondering the algorithm is:
sound_amplitude....
There are likely sound waves missing in that picture hidden between 1 pixel and the next.
That is because that picture is an extremely time-compressed waveform of the sound.
|
|
I'm working on a timer in python which sounds a chime when the waiting time is over. I use the following:
from wave import open as wave_open from ossaudiodev import open as oss_open def _play_chime(): """ Play a sound file once. """ sound_file = wave_...
Started by Morlock on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
OSS drivers can expose....
On some soundcards.
The easy answer is "Switch from OSS to PulseAudio." (Or set up ALSA to use dmix, or get a soundcard with better Linux drivers...)
The more complicated answer is, your code already works the way you want it to.. .
|
|
Is there any way to make the output sound from one application the input sound to another?
Basically, I want to redirect the output sound from say or Firefox to Skype, so Skype uses this instead of line in or microphone, while still having the sound from...
Started by trolle3000 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
The open source alternative is jack, but neither skype or firefox will use jack directly, and jack is designed more for high performance low latency routing... .
Sadly it is not open source or a script, but it is free .
This is a perfect use for soundflower.
|
|
I'm using 4 USB sound cards (ASUS Xonar U1). I want to send to each one of them a different sound (the same text narrated in different languages). For now, what I do to get the sound mixers that I'm interested in, is something like this:
Info[] mixerInfo...
Started by Tiago Alves on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Thus, we always know to which USB port a specific sound will be sent..
|
|
Using GoldWave I can record via the "Stereo Mix" channel, but I get no sound on the "CD" channel. Of course, using the stereo mix also mixes in all system sounds, including beeps, etc.
I have the analog out on the DVD player connected to the CD-IN connector...
Started by Software Monkey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
That sound is generated by whatever.
It never went through the CD-in on the soundcard.
Anyway.
|