Tagged Questions
The playsound tag has no wiki summary.
6
votes
1answer
109 views
How can I play a single tone or custom wave with Delphi?
I looked up some code, seems like everything is creating some math function waves, but I want to a single tone, or a custom wave made with custom single tones.
I read this
How can I generate ...
2
votes
1answer
419 views
Play sound using javascript in safari
I want to play sound onclick event. I have code in which i can play sound in Firefox and other browser but not in safari.
Below is the code. Safari gives me the error like "thissound.Play" [undefined ...
1
vote
2answers
145 views
How do I detect when the sound has finished playing when using PlaySound in Win32 SDK?
I am using the PlaySound function from the Win32 SDK to play a wave sound file. Currently, I have the following line of code:
PlaySound(szFile,NULL,SND_FILENAME );
But now I want to know, how I can ...
1
vote
4answers
3k views
How to PlaySound in C++
i try to play a music file in my coding, but failed. i have my music file in the same folder which save .cpp file.
can someone help me?
my code is:
#include <iostream>
#include ...
1
vote
1answer
1k views
How to get the filepath of files added to Windows Mobile app?
I added a wav file to my Windows Mobile app and I want to use MobilePlaySound in CoreDll.dll to play it.
The fileName is one of its parameters:
MobilePlaySound(fileName, IntPtr.Zero, ...
0
votes
0answers
20 views
playSound function (java- JFrame GUI)
What is playSound function using Java? I dont know how to code playSound() but I know ac.play() means play, ac.stop() is stop. our plan, if a user click on the prev/next button, the speaker will read ...
0
votes
1answer
49 views
Audio on TouchesEnded
On TouchesEnded i want to do 2 things
1) return the view to its original position - this works fine.
2) I want to play an audio sound if the touch ended on the YES vies and a different sound for the ...
0
votes
0answers
86 views
Play sound with accelerometer in xcode, beginner
First I would like to apologize for my very basic question. The last time I did any coding, it was in 97 so I feel overwhelmed trying to get a simple app done in xcode. I have tried to cobble it ...
0
votes
1answer
202 views
Problem with View.playSoundEffect?
I'm trying to play a soundEffect (using View.playSoundEffec() method) when a button is focused.
The problem is the effects will never be played unless the target phone's Audible Selection is enabled
...
0
votes
3answers
222 views
How to play sound at the same time as the program?
I want to play sound while the program is running in c++. I am using the code:
void fighterplanesound()
{PlaySound(TEXT("bombdrop.wav"), NULL, SND_FILENAME|SND_ASYNC);}
I thought the SND_ASYNC ...
0
votes
3answers
258 views
Windows Forms dotnet .wav playback - need to preload multiple wav files to memory for fast playback
I need to play back 30 second audio clips, 1 per second, in winforms dotnet.
I am currently loading/playing the wav files from the filesystem, which works fine on a notebook, but is causing problems ...
0
votes
1answer
89 views
How do I convert a System::IO::Stream^ to an LPCSTR for PlaySound?
I'm trying to embed and then play back a .wav file in a C++/CLI app but all the examples I've seen which use PlaySound are in VB. I can't see how to get froma Stream^ to the LPCSTR which PlaySound ...
0
votes
1answer
696 views
iPhone Vibrate While playing sound
How can I set iPhone to vibrate while playing the sound.
The code I use plays the sound firts and then vibrates or vice-versa.
Thanks