Skip to content
Snippets Groups Projects
Commit 914ba491 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Use vendor prefixed offline audio context for safari

parent 748f8559
No related branches found
No related tags found
No related merge requests found
...@@ -325,25 +325,30 @@ class SoundEditor extends React.Component { ...@@ -325,25 +325,30 @@ class SoundEditor extends React.Component {
}); });
} }
resampleBufferToRate (buffer, newRate) { resampleBufferToRate (buffer, newRate) {
return new Promise(resolve => { return new Promise((resolve, reject) => {
const sampleRateRatio = newRate / buffer.sampleRate;
const newLength = sampleRateRatio * buffer.samples.length;
let offlineContext;
if (window.OfflineAudioContext) { if (window.OfflineAudioContext) {
const sampleRateRatio = newRate / buffer.sampleRate; offlineContext = new window.OfflineAudioContext(1, newLength, newRate);
const newLength = sampleRateRatio * buffer.samples.length; } else if (window.webkitOfflineAudioContext) {
const offlineContext = new window.OfflineAudioContext(1, newLength, newRate); offlineContext = new window.webkitOfflineAudioContext(1, newLength, newRate);
const source = offlineContext.createBufferSource(); } else {
const audioBuffer = offlineContext.createBuffer(1, buffer.samples.length, buffer.sampleRate); return reject('No offline audio context');
audioBuffer.getChannelData(0).set(buffer.samples);
source.buffer = audioBuffer;
source.connect(offlineContext.destination);
source.start();
offlineContext.startRendering();
offlineContext.oncomplete = ({renderedBuffer}) => {
resolve({
samples: renderedBuffer.getChannelData(0),
sampleRate: newRate
});
};
} }
const source = offlineContext.createBufferSource();
const audioBuffer = offlineContext.createBuffer(1, buffer.samples.length, buffer.sampleRate);
audioBuffer.getChannelData(0).set(buffer.samples);
source.buffer = audioBuffer;
source.connect(offlineContext.destination);
source.start();
offlineContext.startRendering();
offlineContext.oncomplete = ({renderedBuffer}) => {
resolve({
samples: renderedBuffer.getChannelData(0),
sampleRate: newRate
});
};
}); });
} }
paste () { paste () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment