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
6
votes
1 answer

Is there any way I can make podcast application from iphone play my podcasts ? ( with code )

I'm doing an application that can play podcasts, but i feel more comfortable if the iPhone default podcast application plays the files, instead of me having to handle them. When I pass the URL to the sharedApplication object, Safari opens and starts…
josete
  • 357
  • 1
  • 3
  • 15
6
votes
1 answer

Audio recording and playback in Silverlight

I have a Silverlight 4 application that records user's voice through the mic. Now, as soon as the recording is completed, I need to play the recorded voice back to the user before posting it to the server. Is it at all possible to play it back to…
user289127
6
votes
0 answers

Get the metadata from Spotify's current played song on Windows

I want to play a simple program for Windows that gets data about the current played song from Spotify. The standard approach seems to be to get the Window Title of Spotify and extract the Artist and the song name. Problem is that you can't get any…
SideSwipe
  • 559
  • 3
  • 15
5
votes
4 answers

how do I play mp3 file?

How can I write a script in ruby which plays mp3 file (background-music) when executed from command-line? I tried this run = "mplayer #{"/Users/bhushan/resume/m.mp3"} -ao sdl -vo x11 -framedrop -cache 16384 -cache-min 20/100" system(run) but it is…
Bhushan Lodha
  • 6,824
  • 7
  • 62
  • 100
5
votes
1 answer

HTML 5 - Play tiny mp3 "inline"

I want to play a mp3 using HTML 5 audio support. I was trying to use an audio tag but now I am doing it using javascript. My "Player" will be just a tiny Play image, that when is pressed plays the audio (not all the audio control with progress). I…
Tony
  • 10,088
  • 20
  • 85
  • 139
5
votes
4 answers

How do I play two sounds one after the other in a Windows Forms application?

I want to play two sounds one after the other in reaction to a button click. When the first sound finishes, the second sound should start playing. My problem is that every time the button is clicked these two sounds are different and I don't know…
hamze
  • 7,061
  • 6
  • 34
  • 43
5
votes
2 answers

Playback in meetme (asterisk)

I would like to play an audio file to all members of a MeetMe conference, like a notification. Does anyone have any idea about how to do this?
Anil agrahari
  • 340
  • 1
  • 9
  • 25
5
votes
1 answer

How does Playit app prevent videos from playing in other media players? What technology does it use

There is a website pdisk.net and whatever the video we upload from our computer to the site and share the link to view it, the videos open only in Playit android app. Only first 15 seconds can be viewed after that a screen appears showing "to play…
AzReddy
  • 73
  • 1
  • 7
5
votes
2 answers

Play Framework is hiding the intial exception

I'm getting this error from Play after implementing a controller. If I throw in a try to catch and println the error, I can see what exception was thrown by my code, but otherwise this information is missing and I get an error relating to files in…
Isvara
  • 3,403
  • 1
  • 28
  • 42
5
votes
1 answer

playsinline not working for video on iOS?

I have a site that uses a video with the following code: I need the video to autoplay on iOS. It autoplays just fine on…
GDP2
  • 1,948
  • 2
  • 22
  • 38
5
votes
1 answer

How to record audio on Android Q using PlaybackCapture APIs?

I am trying to record audio on Android 10(Q) using Playback Capture API. As Playback Capture API, only allow to record sound with USAGE_GAME, USAGE_MEDIA or USAGE_UNKNOWN, so, I have downloaded Uamp sample that has USAGE_MEDIA set when playing…
Vatish Sharma
  • 1,536
  • 3
  • 16
  • 35
5
votes
1 answer

Android Animation pause and play problem

I have created an animation using the following code. private AnimationSet rootSet = new AnimationSet(true); private int xstart=258; private int ystart=146; for(; k
dev_android
  • 8,698
  • 22
  • 91
  • 148
5
votes
2 answers

Python VLC - get position polling rate work arounds

Im using Python VLC to build a custom playback app in pyqt. I have painted a nice custom slider to track along with the video, but hit a bit of an annoying problem. No matter how often I tell my slider to update, it's quite glitchy (jumping every…
aescript
  • 1,775
  • 4
  • 20
  • 30
5
votes
1 answer

I can't get ipython console to play a sound in spyder

I've been trying to play audio files (.wav) using IPython but I don't hear any sound. What do I do to hear the actual sound? Here is the code: import IPython IPython.display.Audio("180960__kleeb__gunshot.wav") I expect to hear a sound but I only…
Israel
  • 51
  • 1
  • 3
5
votes
2 answers

mediaelement.js - pause/play onclick for video?

What's the easiest way to add pause/play functionality by clicking anywhere in the video element similar to most video players? I tried: $('video').click(function() { if($(this).paused){ $(this).play(); } else { …
DamnSemicolon
  • 261
  • 1
  • 3
  • 10