Questions tagged [playing]

Use [audio-playing] for questions related to playing audio with playbacks, and [playing-cards] for questions related to mimicking playing cards in questions. For questions related to playing videos, use [video-streaming].

This tag is deprecated! Please consider use of the following tags instead:

71 questions
2
votes
1 answer

Android Media Player does not stopped, when I click on a song link it playing multiple times

When I click on the html href link which is on my html file, that playing a song. but again I hit on the same link it starts playing the song without stopping previous activity. I canot stop the song by clicking twice on that link. Please help me…
2
votes
0 answers

Playing shot .wav file on mobile device Android (PHP,HTML,JS)

I need to play short .wav sound on mobile site (Android tablet). I have tried: It is working on PC/MAC but doesn't on iOS/Android. Is it possible to play sound on…
antkowiak
  • 21
  • 4
2
votes
3 answers

No Sound When Trying to Play Audio (.wav) Files

I have a very simple class that can play a sound file with the following code: import java.io.File; import java.io.IOException; import javax.sound.sampled.AudioSystem; import javax.sound.sampled.Clip; import…
Ood
  • 1,445
  • 4
  • 23
  • 43
2
votes
1 answer

Caching and Playing video

The requirement is to list a Videos thumbnails and on clicking it should play related video into Application. i am able to play url where video is located using Video View. But now i want to implement this thing in a better ways like Watsapp and…
Suresh Sharma
  • 1,826
  • 22
  • 41
2
votes
1 answer

Delay in playing video file from Input Stream

I am playing the video file from input stream below is my method: public static String getDataSource(InputStream inputStream) throws IOException { InputStream stream = inputStream; if (stream == null) throw…
Goofy
  • 6,098
  • 17
  • 90
  • 156
2
votes
1 answer

sounds not playing with mediaplayer after playing some sounds

I'm developing an android application which is collection of 100 sound effects. After I play for instance 25 of the sounds, I can't play anymore and I have to close the application and wait for some minutes then open the application and now I can…
Amin Sajedi
  • 135
  • 9
2
votes
5 answers

I want to stop mediaplayer when home button is pressed

When I am out of my app (when pressed home button or back button), the music keeps playing in the background. How can I stop it? public class MainActivity extends Activity implements OnClickListener { MediaPlayer ourSong; @Override protected void…
berk kaan
  • 447
  • 2
  • 7
  • 12
1
vote
2 answers

video to fit screen in android

I am trying to play a video in android using Video View, But the video is not completely stretching to fit the screen instead the video view is stretching and its showing black empty screen on either side of the Screen I want the video to be…
Nagendra
  • 11
  • 1
  • 2
1
vote
0 answers

Play videon on Android custom activity

I want to play video in my application(ex::::my Webview) means I don't want to play the video in Youtube. This is my…
rajani
  • 101
  • 7
1
vote
0 answers

How I can play a Youtube video on a platform that is not Android, IOS, Web?

I would like playing Youtube video by my own program. Unfortunately, I found that "Play Youtube Video API" just supports Android, IOS, and Web (IFrame), and my program does not run on those platforms. I have just found only 1 solution until now. I…
1
vote
2 answers

Running animation in background worker

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…
Maverick
  • 83
  • 1
  • 5
1
vote
0 answers

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

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…
1
vote
1 answer

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…
Francis
  • 11
  • 1
1
vote
0 answers

Searching ,watching,Downloading Youtube Videos on Android app using YouTube Data API (v3)

i am using Youtube Data API to search videos of you tube in android application but facing problem for getting playlist id,please suggest me how to solve this problem
1
vote
2 answers

Delays after playing multiple sequential audio files

I am currently developing a walkie-talkie type environment. Recording and resampling audio work fine now (thanks for the help), playing works .. sort of. My data comes in (WAV-) blobs, so here's what I do: audioPlay(blob) { var fileReader =…