Questions tagged [playback]

Playing a sound or a video from an existing audio or video file or stream.

Playing a sound or a video from an existing audio or video file or stream.

1540 questions
0
votes
1 answer

playing sound on external speaker with active call on internal speaker simulteniously in android

I am building an app which plays background music during incoming call. It works fine when i get an incoming call it starts music on external speaker but when i answered call I have setSpeakerphoneOn(true) that plays music and caller voice on…
Naresh29
  • 49
  • 9
0
votes
1 answer

as3 - flvplayback component - disable auto buffer?

I'm using the flvplayback component in an AS3 movieclip. I do have the source defined in the compontents properties to a video hosted on Amazon s3. Now the problem is as soon as the swf loads in a browser it starts downloading/buffering the video…
Joe
  • 1,762
  • 9
  • 43
  • 60
0
votes
1 answer

Play videos in c++ using QT creator

I developing a game in C++ using SDL on windows 7 64 bits with Qt creator IDE. I need to play a video during the game. I already tried using smpeg.lib ( from de SDL itself), QtMobility API and OpenCV. But i failed with all of them. I really need a…
0
votes
1 answer

How to detect whether an audio file stored in document directory is playable or not programmatically Xcode iPhone

I am working on Playing an audio file stored in Document Directory using AVAudioPlayer.The Audio exists in directory and has 82 bytes of size. I want to detect whether this audio is Playable or not. /*save the Audio file in Document Directory…
Vikas Ojha
  • 444
  • 1
  • 8
  • 23
0
votes
1 answer

Play a video full screen without control at startup screen

I am creating an iPad app, I want to play a video fullscreen without control at startup screen when app is loading data, I searched and found some article about MPPlayerViewController, I used it but I have some issue as below: I use below code to…
Son Nguyen
  • 3,481
  • 4
  • 33
  • 47
0
votes
2 answers

C# emgu cv: Recorded Videos playsback to fast/slow

I am trying to write the captured video to a file using VideoWriter and Capture from emguCV, the problem is: If i playback the video that I have just recorded it plays to fast or to slow. How can i fix this, so the video I record will be…
BARJ
  • 1,543
  • 3
  • 20
  • 28
0
votes
1 answer

How to update a bar button item in a toolbar

I have a single playback controller in my app on the navigation bar and is easily found in its implementation file. So I've tried to add a toolbar and move the playback controls to that toolbar, but I don't know how to reference it programmatically…
0
votes
1 answer

Trying to populate my *urL with the contents of the picker view

Hi could anyone help me , im trying to populate my *URL with the contents of the picker view so i can use selected pickerview row to link to play the selected video . i.e.: if pickerview is showing "vid 1" then pressing the UIRecbutton labelled…
0
votes
1 answer

Loading a video (mp4) file in android

VideoView v = (VideoView) findViewById(R.id.VideoView01); Uri uri = Uri.parse("android.resource://" + getPackageName() + "vid.mp4"); mc = new MediaController(this); v.setMediaController(mc); v.setVideoURI(uri); …
kavya
  • 468
  • 2
  • 4
  • 10
0
votes
1 answer

HTML5 Play Audio Every _ Amount of Sec

What I'm trying to do is have it so that when the page loads have it play highpitchsound.wav (or .mp3) for x amount of seconds the user defines in an alertbox on page load. In the alertbox there's a textbox, and a button "Confirm". The default text…
Michael Schwartz
  • 8,153
  • 14
  • 81
  • 144
0
votes
2 answers

How to play audio on Corona?

I am trying to play audio as i used to do but it seems not working now. These are the codes I tried: local birdSound = audio.loadSound("bird.mp3") audio.play(birdSound) It gives an error like that: WARNING: Failed to create audio sound Can…
Figen Güngör
  • 12,169
  • 14
  • 66
  • 108
0
votes
1 answer

NSThread While Loop Based on Boolean - Music Player Start/Stop - IOS

I am trying to create a music player with start/stop functionality. I do this by starting a while loop that loops if a boolean value is true. This while loop is contained in a separate thread. I start this thread in the viewDidLoad…
rizzes
  • 1,532
  • 20
  • 33
0
votes
1 answer

Reliable sequential audio playback on Android

I am writing an android game for teaching kids to count. The instructions are read to the player through sound clips that are put together to form sentences (for instance "Place", "one", "cow", "in the", "barn". This requires a certain amount of…
Johan
  • 780
  • 7
  • 22
0
votes
0 answers

Jquery stop play function

How i can do it ? I have this code : function Slide(i) { slide_1(id); $("#stop").click(function() { event.stopPropagation(); }); } I want stop function propagation and before i can create other function for play other time…
Fran
  • 57
  • 1
  • 10
0
votes
1 answer

Button not playing audio in iOS

I uploaded a file audio.wav into my supporting files folder. This is my PlayAudio.h #import #import #import @interface PlayAudio : UIViewController { } -(IBAction)…
sal
  • 67
  • 1
  • 9