playing

Flash play() processed immediately?

Does the play() function in Flash: move the playhead of the MovieClip to the next frame -- as soon as play() is called change the MovieClip's state to "playing" -- actually move MovieClip to next frame, when movie moves to next frame ...

set focus on a pop-up with music playing

hi, again trying to do music in a homepage. The music should play on load ... this is how i try to do it. setting up a "window.open" like function Audio() { MyWindow = window.open('mp3/mp3player.html', 'mp3player', "width=130,height=120,left=0,left=100,top=100,location=no"); MyWindow.focus(); } and an Now the music plays ...

Playing sound samples on the iPhone

Hi, I've reached the point where i want to play some samples in my game/app. My instinct says use openAL ... I will have the situation where I will need to play multiple samples at once (however no more than 2 or 3) and the samples will be short (2 or 3 seconds). My question is what is the best way of playing samples on the iPhone give...

how to add custom visualization to Media Element (Windows Media Player) in WPF

Hi Team, I just came across this requirement, could find this URL is of close match but the source downloaded is corrupted. http://blogs.msdn.com/adam%5Fnathan/archive/2005/10/24/using-com-interop-to-create-a-wpf-visualization-for-windows-media-player.aspx Also how to add this visualization into Windows Media Player for playing audio f...

Play MP3 Files with iPhone SDK

hi .... what 's the easiest way to play a music file such as Mp3 with pause botton ? very very simple a button play and another button pause that music .. can you write that code ! ...

touchesEnded Sound?

I'm trying to play a sound on touchesEnded but I'm having a problem. There are multiple objects that get moved around, so if the below code holds true when any object is moved, it constantly plays the sound. How do I only play it once? -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{ if(CGRectContainsRect([image1 ...

How can I perform an action at a certain point in time during a video in Android?

I am creating a program which requires me to change a setting in the program when the video reaches specific points (at 1/3 of the video's completion, 2/3's and on completion). Android has a built in callback method for completion so performing an action at that point in time is not difficult. However, I don't know how to go about checki...

Playing Dailymotion videos in iPad

Hi, I am developing an iPad application that lists News Videos from Dailymotion. I also want to play these news videos in my webview. I tried playing the URL corresponding to the tag "media:player url=" in iPad. It does not work because iPad is not compatible with flash. Also, I tries embedding the code given as comment inside the tag...

How to record and Play back from Memory using Audio Queue Services

Hello all. I've been trying lately to make a game that allows the user to talk and afterwards play what he talked back in a funny voice. The catch is that the recording is done only when somebody talks near the iphone (I've managed this part I have a recorder active all the time and get it's average and peak values). The problem is wh...

Playing sound issue iPhone?

What's wrong with this code? I've used it before but now I'm getting these warnings... warning: passing argument 2 of 'AudioServicesCreateSystemSoundID' from incompatible pointer type warning: passing argument 1 of 'AudioServicesPlaySystemSound' makes integer from pointer without a cast -(void)playfireSound{ NSString *path = [[N...

Running animation in background worker

Hi, I m developing an application in vb 2008, and using background worker to copy file(s). I have my own designed form which plays an animationon on the top of the form along with copy. For playing animation i m using "AxMSComCtl2.AxAnimation", on execution i get "ActiveX control '' cannot be instantiated because the current thread is ...

iPhone AVAudioPlayer app freeze on first play

Hello guys, I'm using AVAudioPlayer from iOS SDK for playing short sounds on each click in tableView rows. I have manually made @selector on button in each row that fires up method playSound:(id)receiver {}. From receiver I get sound url so I can play it up. This method looks like that: - (void)playSound:(id)sender { [audioPlayer ...