You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot use the AudioContext on all the browsers. webkitAudioContext is missing in decoder.js
2nd Bug description
Draggable seeking bar is missing drag and skip(speed for the skip, drag/skip position with % of width)
Environment
Browser: Safari, Chrome etc on some IOS devices not render without webkitAudioContext
var AudioContext = window.AudioContext // Default
|| window.webkitAudioContext // Safari and old versions of Chrome
|| false;
if (AudioContext) {
//ToDo
var ctx = new AudioContext;
// ...
} else {
// Web Audio API is not supported
// Alert the user
alert("Sorry, but the Web Audio API is not supported by your browser. Please, consider upgrading to the latest version or downloading Google Chrome or Mozilla Firefox");
}
The text was updated successfully, but these errors were encountered:
phyohtetpaing
changed the title
cannot use the AudioContext on all the browsers. webkitAudioContext is missing in decoder.js
Cannot use the AudioContext on all the browsers. webkitAudioContext is missing in decoder.js
Jan 4, 2025
1st Bug description
Cannot use the AudioContext on all the browsers. webkitAudioContext is missing in decoder.js
2nd Bug description
Draggable seeking bar is missing drag and skip(speed for the skip, drag/skip position with % of width)
Environment
The text was updated successfully, but these errors were encountered: