Questions tagged [playback-rate]
13 questions
5
votes
0 answers
Changing playback rate of AVPlayer produces choppy Audio
I am using AVPlayer in my app. My app supports the change of speed of playback of audio and video. I am initializing the player as follows.
AVPlayerItem * playerItem= [AVPlayerItem playerItemWithURL:self.audioUrl];
…

Abuzar Amin
- 1,981
- 1
- 19
- 33
2
votes
1 answer
QMediaPlayer setPlaybackRate > 1 causes high-pitched audio
I'm creating an app that plays podcasts in PyQt5. It retrieves the MP3 from a URL and plays it using QMediaPlayer. The issue I'm running into is when I wish to play these podcasts back at a faster speed. Using setPlaybackRate(rate) I change the rate…

Ricky Kresslein
- 372
- 1
- 13
2
votes
1 answer
Changin mp3 speed in Qt and C++ [QMediaPlayer]
I'm trying to develop a little application in which you can load a mp3 file and play it in variable speeds! (I know it already exists :-) )
I'm using Qt and C++. I already have the basic player but I'm stuck with the rate thing, because I want to…

mais88
- 31
- 7
2
votes
1 answer
Web Audio - How to change playbackRate of all sounds instantly?
When using Web Audio, you can connect all sounds you create to one globally created gainNode and use that node to have a "Master Volume" property. This is very handy when you want to be able to change the master volume on the fly and want it to…

Dysprosium
- 344
- 2
- 9
1
vote
1 answer
Simple Javascript extension to change playback speed not working
I have a simple playback speed setter for any HTML tagged videos (YouTube).
When I click the 2.25 button that's supposed to change the speed to 2.25, nothing happens. I don't get an error message.
But when I open the browser console and type…

James Grey
- 17
- 2
1
vote
1 answer
Setting HTMLMediaElement.playbackRate from Blazor without javascript interop
I'd like to understand if there is a way of setting value of HTMLMediaElement properties playbackRate
from Blazor WebAssembly without resorting to javascript interoperability…

Alessandro Martinelli
- 187
- 1
- 12
1
vote
1 answer
How to reset an HTML range slider to default position and default playbackRate value with a single button press
I’m a total newbiew here, but trying my best to figure this out.
I can specify the video playback speed with a range slider no problem, but after changing the speed on the slider, instead of manually pushing it back to it’s original value I’d like…

jcp543
- 47
- 6
1
vote
1 answer
Playbackrate comes in chunks when higher than input hz - clicking sound
My first experiment with audio, so this might be not the smartest question. But I'm trying to record audio from the mic and play it back through either a headset or speaker. And making the playbackrate half the HZ works just fine, but making it…

Diego
- 4,011
- 10
- 50
- 76
0
votes
0 answers
Is it possible to change the playback rate value of a Spotify track playing on my website?
The thing is... Spotify doesn't seem to create an audio or video element to play these tracks so I can change the playback rate from the element reference, it creates an
0
votes
2 answers
How to get JS to execute for whole class?
I have many videos on my page and I've created and extra button on the video to speed up video, and it is working if I call getElementById.
Is it possible to use one Javascript for all videos on the page? Since it's around 80+, then would be lots…

DenisZ
- 171
- 1
- 11
0
votes
1 answer
How to change HTML video playback rate when video is already playing?
I am using Arduino/sensor generated data to alter a HTML video's playback rate.
function updateVideoPBR() {
if ((inoData.distance/200) > 16) video_pbr = 16;
else if ((inoData.distance/200) < 0.0625) video_pbr = 0.0625;
else video_pbr =…

Nigelino
- 11
0
votes
1 answer
How to check browser support playbackRate in source?
I am building a video controller capable of changing playbackRate.
However, some browsers that do not support the playbackRate function would like to display the message.
For example, "Not supported in this browser".
Is there a way to check if the…

Choe s
- 45
- 7
0
votes
0 answers
How to fix jittery audio/video on firefox when playback rate set to .5x using javascript?
I am trying to set up an experiment in which I am playing .mp4 videos and changing the playback rates using base Javascript (no libraries) and HTML5 (Mac OSX 10.10.4). When I change the playback rate of a video to .5x, although the audio-video is…

dbm
- 133
- 1
- 1
- 8