Shuffle 10 Audio Files And Play In A Loop?

Dec 11, 2010

I have 1-10 audio files that were selected by the user using an "openFileDialog" (with a button and textbox for each). Now, I want it to play all of the files that they selected in a random order when the user clicks "Button12." After all the files have been played, I want it to start over and play all of them in a random order again. I don't want it to stop until the user clicks "Button13." When the user clicks "Button 12" again, it should start playing them in a random order again.

View 4 Replies


ADVERTISEMENT

Audio Playback - Make The Shuffle Never Play The Same Song Twice

Mar 21, 2011

Basically my program has a "shuffle" music feature:

vb For i = 0 To 26 num = randomObject.Next(0, 27) My.Computer.Audio.Play("C:UsersMcturtlesMusicSongs" & num & ".wav", AudioPlayMode.BackgroundLoop) Next

Which selects a random number 0 - 26 and selects the corresponding song.

And a straight play feature:

vb Dim counter As Integer Do Until counter > 26 My.Computer.Audio.Play("C:usersmcturtlesmusicsongs" & counter & ".wav", AudioPlayMode.WaitToComplete) counter += 1 Loop

All of these activated by a button(separate for each)

When I click one, it makes the program stop responding. I'm pretty sure it is the .WaitToComplete mode, but I can't find a way to make it continuously play without it. If you can find my error. Also if you could tell me a way to make the shuffle never play the same song twice, that would be awesome as well.

View 2 Replies

My.computer.audio : Get It To Play Other Files Besides Just .wav, Like .mp3. Wave Files?

Sep 13, 2008

how can i get it to play other files besides just .wav, like .mp3. wave files are way too large to be used easily if you want a good quality. why cant i play .mp3 files with it?when i convert a 2.1 mb mp3 file to .wav it turns out to be 36 mb?any other ways besides computer.audio to play audio files on command?

View 1 Replies

How Do I Play Audio/video Files

Apr 10, 2009

How do I play audio/video files in VB.NET?

remember to mark the replies as answers.

View 1 Replies

Play Xm Audio Files In Background?

Apr 19, 2011

I dont have bass dll or other files...How i play xm audio files in project, and whats the command to Call the function FOR PLAYING.

View 2 Replies

[2005] Unable To Play Some Audio Files

Jan 24, 2009

I am building a music player. I found this class that has worked great for what I need. However, for some reason, it won't play certain audio files. IT just reads it as 0 duration. I have no idea why. Below is the code that plays the file.

[Code]...

View 8 Replies

Forms :: Play Audio Files (WAV) When Form Loads?

Apr 19, 2009

How to play an audio file automatically when form loads?

View 5 Replies

.net Media Player Shuffle And Random Play?

Feb 25, 2011

i created a media player in vb.net. i have a listbox as playlist. My problem is i have picturebox1 in which if i have to click shuffle the items in the playlist (listbox) will shuffle songs. Also, the playlist must automatically play songs.

View 5 Replies

Media Continuous Play And Shuffle Into A Checkbox Form

Jul 20, 2009

Not sure if this is the right thread place or not.And I've been designing an Mp3 player. I've ran across several things that I would love to know how to fix.

1. It won't play the next song when one ends.
2. Click and drag media files into the playlist.
3. Shuffle button would be awesome.
4. Repeat button.
5. I have a pause button, but it dont pickup where it paused...

If you could get the repeat playlist and shuffle into a checkbox form.[code...]

View 4 Replies

Audio Management System - Allow User To Add Audio Files Itself Into Database Together With Audio Information

Jan 28, 2010

I'm developing a standslone system for my school project. I'm developing an audio management system which allow user to add audio files itself into database together with the audio information such as artist name and album year. I just started it few days ago and face some problems.. my song in the playlist wont continue to play after 1 finished and i need some idea on how to store the audio files into database ... in blob types may be?

Heres the screenshot and codes

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bt_add.Click

[CODE]............................

View 2 Replies

Play Audio After The Previous Audio

Sep 23, 2009

how can i play the audio after the previous audio play is finish by using directx.

assume i have audio1.wav and audio2.wav.

i play audio1.wav by this code.

audio1 = audio.fromfile("D:audio1.wav", false)

how can i play audio2.wav after audio1.wav is finish? without use any button or signal. just depends on when the audio1.wav is finish, then audio2.wav will play automatically.

View 4 Replies

Play A Wav Audio?

Aug 29, 2009

I have put some wav audio on the resources. in my form, i have a label. i named the label as s1f1 and s1f2. now i want to play the audio according to the label click. if it is click then the audio play. i dont to put a line of code in every label. assuming that there is a lot of label, then it will be a waste of time. so how can i play the audio, by only write a several line code but for all of the labels.

View 7 Replies

Play More Than One Wav Audio

Sep 9, 2009

how can i play more than one wav file at a time? and not at the same time too. can vb.net do this alone without import something else?

View 1 Replies

Add An Audio Track To Play?

Feb 9, 2010

What is the code to add an audio track to play?

I need the file to play after a letter has been pressed so will be in the keypress function

View 1 Replies

Asp.net - Use Silverlight To Play Audio?

Aug 23, 2010

how to use Silverlight to play audio from local ASP.NET folders?

View 1 Replies

Click To Play Audio?

Jun 4, 2011

On a click of a button i want to pay an audio file.... here is my code

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox2.Text = "1" Then

[Code]....

now for some reason it says syntax error?

View 4 Replies

Different Ways To Play Audio?

Dec 10, 2009

I'm new to VB and have over the last week or two been looking at the different ways to play audio (mp3's). Windows Media Player, Microsoft Multimedia Control, Bass.dll, SndPlaySound, MCI SendString and DirectX (including audiovideoplayback, direct3d and directsound.)I origninally decided to use windows mediaplayer, mainly because it seemed the logical choice but quickly found out i couldn't get it to work properly. So i installed the Directx SDK but now i'm completely overwhelmed about what to use and why.

View 3 Replies

Play Audio In One Channel?

Nov 12, 2011

I want to play a sound in the left speaker only and then again in the right speaker.

View 6 Replies

Ways To Play Audio?

May 4, 2010

I'm looking at creating an mp3 player to keep myself busy. However I'm trying everything I can to avoid using the windows media player COM component. It makes it a little too easyWhile looking around I stumbled upon the DirectX.AudioVideoPlayback namespace and I was wondering if this would be sufficient. Would I be able to create an equalizer and other more advanced things for my application?

View 2 Replies

Debugging The My.Computer.Audio.Play?

Nov 19, 2010

In my program I have one line of code that worked one day, and not the next. I didn't change anything in this part of the code, but sure enough, going back a day, it works.

Code:
My.Computer.Audio.Play(My.Resources.ResourceManager.GetStream("tada"), AudioPlayMode.Background)

Now, this is the exact same line of code in the copy that works, and the copy that doesn't. The line is identical, so there must be a problem with my actual resources or something.I know this line of code is getting called... I can put a breakpoint on it and put debug.print statements before and after it.Now, in my resources, tada is listed in there, and the file seems to be there appropriately. In fact, if I double click it in the tree, it plays, and I can play it on the resources screen as well. I even tried adding a different wav file, and no luck!

Putting a try/catch block around it shows that no errors are thrown.I've tried it on 4 different computers with different configurations. Same problem.how to debug this?

View 2 Replies

Play Two Audio Clips At Same Time?

Jul 2, 2009

I do get that I'm going to need to "thread" them separately, but I've been unsuccessful so far.

I get the audio clips to play, but when one starts, the other stops.

This is code that's playing the audio, derived from examples in preior postings[code]...

View 23 Replies

Play Wav Audio According To Labels Click?

Aug 29, 2009

Assuming that i have 22 labels. each of them is named s1f01, s1f02, s1f03 and so on..my question is how can i play the audio wav that have the same name with the labels name when the label is click. for e.g. i have put s1f01 wav audio file to my resources. so i want to play it when the label that have the name s1f01 is click.[code]...

View 2 Replies

VS 2008 Play Streaming Audio

Jun 7, 2009

I am currently trying to find a way to play an audio stream from the internet so I thought that someone here might be able to help me. The stream I want to play is specified in a .m3u file and it is not a live stream, it is pre-recorded. This component is for a WPF Browser Application I'm developing.I thought of using the ActiveX MediaPlayer from WMP.dll but it's lack of intuitiveness confounded me. I would really dislike having to download the whole audio track before playing it since the file may be really large and take a long time to complete. Playing the file in Windows Media Player as an outside player is also out of the question.

View 14 Replies

Forms :: Audio.Play Relative Path?

Mar 25, 2009

I need to play a sound file: Soundsopen_creaky_door.wav"

However the code only works if I specify the EXACT location:

My.Computer.Audio.Play("c:soundsopen_creaky_door .wav")

Is there a way I can set the relative path to something like this?

My.Computer.Audio.Play("soundsopen_creaky_door.w av")

View 3 Replies

How To Play Audio According To Value Of Selected User Control

Aug 22, 2009

How can i play an audio that possibly mp3 or wav without let the user to select the file by using the open dialog box. i want the audio to play when the user press a key. for example user press key 1 then audio1.mp3 will be play. Please suggest me something and provide the simple code if possible.

View 2 Replies

Play Audio Resource File By String Dynamically?

Apr 28, 2012

The code below works so i know the resource is registering correctly ...

vb.net
My.Computer.Audio.Play(My.Resources.alrt2xuk, AudioPlayMode.Background)

But what im trying to do is make a function where I can play the audio file in the programs resources with a string variable being passed to it representing the resource objects filename.

this is so users can type in a audio files name and pull it from the program's resources dynamically VS a big case i would keep having to expand ...

heres my code

[Code]....

but that isnt working for some reason ... keeps throwing "objects reference not set to instant of an object" on the "Return ..." line

View 2 Replies

Play, Pause, Restart, & Stop An Audio File?

Apr 18, 2010

I have a start and stop button on a form and would like a pause and restart button aswell.

I can start my audio file (WAV file in the C-Drive) fine with;

My.Computer.Audio.Play("C:Bleep_TestBleep_Test.wav", AudioPlayMode.Background)

Thus allowing other functions to be carried out.I can stop my audio with;

My.Computer.Audio.Stop()

But i would like to be able to pause and restart the audio?There are timers and getkeystates envolved with this form. The timers I can pause and restart, the getkeystates are a function called in conjunction with the timers as a case statement, (all this is working).how to pause and restart the audio, bearing in mind the loaction and the other features of the form? (I only wish i was a clever as you guys/girls out there to return the help rather than leaching your knowledge continously)

View 5 Replies

VS 2008 Play Media File Video Or Audio?

Jul 7, 2011

how to play video or audio in a vb.net application but have come up with not a lot.

I want to create a program that accessing a web server (no problem on that) and will pick up audio and video that is stored on that server.

Or, maybe do a live broadcast where I can play my guitar and sing a song. (Promise if I get this done through here I will give you a live performance) on that note I am sure you will all hold back.

This is a little open and wide, but what I would like to know via a webserver is this possible

1.Video
2.Audio
3.Live broadcast

View 11 Replies

Make An Audio File Play On A Button Click Event?

Dec 22, 2010

is there a way to make an audio file play on a button click event?

View 4 Replies

Forms :: Play Audio While Menustrip Submenu Item Highlighted (without Using Mouse Hover)?

Jun 29, 2011

How to play audio while menustrip submenu item highlighted (without using mouse hover)?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved