WAV File Play - Detect When A Sound File (WAV) Stops Playing?
Feb 25, 2009
For stopping by, is there a way to detect when a sound file (WAV) stops playing?
e.g.> There is a FORM with a PLAY button on which is coded to play a WAV file. But how does VB detect when the WAV file has finished playing?
Here is the code I have on the PLAY button
My.Computer.Audio.Play("test.wav", AudioPlayMode.BackgroundLoop)
View 3 Replies
ADVERTISEMENT
Sep 27, 2009
I have done an extensive search before posting this question, using many different search parameters without success at finding an answer.Using Visual Studio 2008 Express VB:My program requires a notification when a wav file has finished playing, a media player song list will not suit my needs.I have used System.Media.SoundPlayer, Microsoft.DirectX.DirectSound and My.Computer.Audio.Play to play a wav file. All work well at playing and stopping the requested wav. So far, I have not found a methode to capture an event when the wav has ended. DirectSound stops playing when the form has lost focus, so I dont think that I can use it. Audio.Play AudioPlayMode.WaitToComplete only holds up other operations and I dont want to create multiple threads.
View 3 Replies
Dec 6, 2009
Is their a way for my application to get any sound playing from my pc and play it?
View 6 Replies
Jan 30, 2012
I have a problem. When I play a wav file using winmm, as soon as I click on a different command button on the form, the audio playback stops. How do I make sure the wav files are allowed to play in their entirety even when focus is moved to another control?
View 13 Replies
Sep 8, 2009
how to detect what frequency of the sound that is playing on a speaker on vb2005. what reference should i have. what function should i use.
View 3 Replies
Nov 19, 2007
I want to make a function to record the sound and then to play the record,like the telephone. I have ever download some articles,but they were all too complex,or they have too many unassociate code,so I can not understand the courses of the recording and playing.I want to get some code here?
View 2 Replies
Jan 25, 2010
I want my program to play sounds when an object is hovered, but I don't know how to code it.
View 1 Replies
Jun 10, 2011
Im looking to play a sound from a folder which is in my debug directory. I got this working for a PictureBox: PictureBox1.ImageLocation() = ("Resourcespicture.png"). But I cant find something to play a sound. This is what I had before: My.Computer.Audio.Play("C:Users......Soundseep-2.wav"). I dont really want to be writing the location of the files using special directories. Is there any way I can just set the location of the file to the directory in which the .exe is.
View 6 Replies
Nov 25, 2009
I am trying to use direct sound to play a wav file, so I may animate a picture box while the wav file is playing. I have made a device object and a secondary buffer object and when I run the program I get an error message(see attached image), but after I click continue, the wav file plays and it plays every time I click the play wav button. I am using a test project to work out the bugs before I implement the direct sound in my other project. Below is the the code I am using. Can someone tell me what I am doing wrong? The code needs a form named form1, and a button named xPlayButton.
[Code]...
View 1 Replies
Jul 13, 2011
I know how to embed WAV files; I need to find the code to embed MP3 files onto the background. I don't want to use a pathname, can it be in resources?
View 1 Replies
Sep 30, 2011
Here's the code for my "Play Audio Button"
[Code]...
This works great, but I would like to make it so that I can tell it to play the sound file starting at, for example, 3 seconds and ending at 9 seconds in. For instance, I could have 2 Numeric Up Down boxes on my form and whatever NuD1.value = is the lower range and NuD2.value = higher range.
How do I specify at what point in the sound file I want to start and at what point in that same file I want to stop?
View 12 Replies
Apr 19, 2009
I have background sound loop with the My.Computer.Audio and it works fine. I want to play another sound (like a beep) when desired without stopping the background sound. Several examples I have found don't seem to work. I am in VB.NET 2008 Professional.
View 8 Replies
Sep 15, 2009
So I have a wav playing using DirectX in VB6. If i switch to another window, it stops playing. If I click back on the VB6 window it resumes play. How do I make it continue playing when I change windows? Another problem I cannot load wav files larger than 50 megabyte. It says Out Of Memory. How can I increase that?
View 1 Replies
Apr 17, 2009
I am trying to build a small program which will allow some one to click on the exit button and the sound will play and at the end of the sound the program will then close. The sound clip is about 3 seconds long Here is what I have:
Imports Microsoft.DirectX
Imports Microsoft.DirectX.DirectSound
Public Class Form1
Private Dsound As CSoundDevice
[code]....
View 14 Replies
Sep 16, 2010
Im trying to open media player (full screen) and play a movie. When i create the file path like so: Dim MoviePathVTS As String = String.Concat("""" + tempMoviePath, " \VIDEO_TS\VTS_01_1.VOB" + """")
It wont play the file but if i do it like this: Dim video1 = """F:\Movies\DvD\Angels and Deamons\VIDEO_TS\VTS_01_1.VOB"""
It plays fine? the file paths are the same including the extra "" but it just refuses to play. I need the top one because i have many movies in a treeview.
Heres my code
Private Sub watchNow_Click(ByVal sender As Object, ByVal e As EventArgs)
'get the position of the selected node
Dim i = movieTreeView.SelectedNode.Index
[CODE]...
View 2 Replies
Sep 18, 2009
My program turns on and off external relays from the parallel port. I need to find a way to activate the relay only while a wav file is playing and de-activate the relay when the wav file stops playing.
[Code]...
View 5 Replies
Jan 13, 2008
Im developing a TAPI Applicationi had many problems with Acepting the call and detecting DTMF tones, but now these problems are solved,,, now the problem im facing is to play a wave file to the user who is on the phone...... Is there anyone who can gimme code or tel me how to do this in Vb.net
View 5 Replies
Aug 25, 2010
I am creating a program in VB 2010 that needs to play two synthesized sine waves at the same time, one in the right channel and the other tone in the left channel.
These tones will be 2 slightly different frequencies.
I tried to start a thread a week or so ago, but I did not make it clear exactly what I needed, and did not get my project started yet.
View 9 Replies
Sep 21, 2010
I have a VB.NET application that crashes on a client's computer with a BSOD error... KERNEL_DATA_INPAGE_ERROR.This error occurs at a point where my program does two things:
Locks the computer
Plays a sound in BackgroundLoop mode
For locking the work station, I am just using this:
<DllImport("user32")> _
Public Shared Sub LockWorkStation()
End Sub
For playing the sound, I am doing this:
My.Computer.Audio.Play(My.Resources.ResourceManager.GetStream("somesound"), AudioPlayMode.BackgroundLoop)
Now, this sound loops until the user logs back in. My software detects the session state switch and stops playing the sound. Sometimes when I log back in, the sound card plays garbage data for a split second, instead of the rest of the audio buffer. I get the impression that this has something to do with session switching.Could my client be having an issue where there is memory corruption occurring at the point of locking the computer?I apologize for the vagueness of this post... I am not sure where to begin as I cannot reproduce the problem myself.
Edit: If the sound is left to play on its own, even without locking the computer, eventually the computer will lock up and then bluescreen. Playing the sound while locking at the same causes it to happen sooner.
Edit #2: So I've seen it fail now. The sound loop starts playing correctly but quickly switches to looping of garbage data. It's as if it is just reading a random location in memory and looping that. Very strange behavior!
View 1 Replies
Sep 11, 2009
I want to have a applacation then wehen somthing happens (like, uhh a error message but without the message box.) what would be the code that plays the windows alert sounds, and one that applies to the current sound scheme i have running.
View 1 Replies
May 10, 2011
Here is the code that I have that plays a certain sound
Dim Alarm As System.Media.SoundPlayer = New System.Media.SoundPlayer(Steven_Anderson_HW5.My.Resources.Alarm)
Alarm.Play()
Well, is there a way to make the sound repeat itself after it is done playing?
View 2 Replies
Jul 2, 2009
I want to play all sound formats in visual basic pocket pc.I'm using visual studio 2005 . net
View 2 Replies
Nov 26, 2009
I've been looking for a way to play an MP3 file over a specific sound device for a while now and I just haven't been able to find any decent code examples in VB.NET. Basically I need a way to find and list all the sound devices on the system and then play an MP3 file over one of them. I have found code examples in C# and similar but I couldn't find any VB.NET code.
View 2 Replies
Sep 20, 2009
I made a Listbox but there is an issue.. I want to play a sound when I click one of the names in the listbox.
View 6 Replies
Feb 12, 2010
I'm writing a metronome program (a.k.a. click track; it's used for keeping you in time in music), and can't for ther life of me figure out how to play a sound byte (a short beep) as the beat.
I know I need to place this code in the Timer Tick event, but I just have no idea how to import/reference etc. the sound.
View 5 Replies
Nov 20, 2010
How can I display text while a sound is playing? It keep pausing until the sound has completed.
View 1 Replies
Mar 18, 2011
I'm playing videos in a form with an embedded media player, I want to play one, and later another one, how I can programm a pause for the first video to play, and later to play a second one. system.thread seems is not the solution for me.
View 4 Replies
May 8, 2010
I made a media player that has a list box to select the file to play but it displays the file path but I want the filename and length.The code is:
Private Sub ListBox1_SelectedIndexChanged(ByVal sender
As System.Object,
ByVal e As System.EventArgs)[code].....
View 18 Replies
Nov 20, 2010
How do I play a WAV file while the computer is reading aloud a text file? It uses Text to Speech synthesis and I need a laughter wav to play when the computer comes across something funny in the line.
View 2 Replies
Dec 13, 2011
I m trying to create media player .i want to add an swf file in current running video file at the top of my video player or bottom of my video.
View 2 Replies