core
core copied to clipboard
How i can add the timeline ?
The timeline mentioned in last realease so how can I added or access it .
The timeline itself is not public yet, however I had to add a more efficient method for retrieving the waveform. You can access it like this:
const source = await AudioSource.from('https://../.myaudio.mp3');
const samples = await source.fastsampler({
length: 20,
start: 20,
stop: 1000,
logarithmic: true,
});
Okay thanks 🙏