Online Sequencer Make music online
  • Sequences
  • Members
  • Chat
  • Forum
  • Wiki

Existing user? Sign In Create account
Login at Online Sequencer Forums

Online Sequencer Forums › Online Sequencer › Suggestions
« Previous 1 … 35 36 37 38 39 … 48 Next »

Convert Any Sequence to .ogg!

Thread tools
Convert Any Sequence to .ogg!
Frank Offline
Grey Hat Script Kiddie who can Compose Music
388 Posts:
 
#1
01-04-2019, 11:08 AM (This post was last modified: 01-04-2019, 11:47 AM by Frank.)
Prototype:
Code:
var chunks = [];
var ac = window.audioSystem.audioContext;
var dest = ac.createMediaStreamDestination();
var mediaRecorder = new MediaRecorder(dest.stream);

//connect all the nodes
for (var i in window.audioSystem.gainNodes) {
   var gn = window.audioSystem.gainNodes[i];
    gn.connect(dest);
}

//start at song start
mediaRecorder.start();
window.song.play(0);

//stop at song end
function stop() {
    window.song.stop();
    mediaRecorder.stop();
}
setTimeout(stop, window.song.loopTime * 15000 / bpm);

mediaRecorder.ondataavailable = function(evt) {
   // push each chunk (blobs) in an array
   chunks.push(evt.data);
};
mediaRecorder.onstop = function(evt) {
   // Make blob out of our blobs, and open it.
   var blob = new Blob(chunks, {type: 'audio/ogg; codecs=opus'});
    document.write('<audio controls></audio>');
   document.querySelector("audio").src = URL.createObjectURL(blob);
};
Confirmed for Chrome above works. Jacob_ might want to add UI features to this though. Only works with .ogg, never mind what I said before.


Kim Wrote:##878337 + https://js-game.glitch.me + Doesnt take peopel serious if their has badly speling gramer puntuatin
Reply

Messages In This Thread
Convert Any Sequence to .ogg! - by Frank - 01-04-2019, 11:08 AM
RE: Convert Any Sequence to .ogg! - by Kirbyderp - 01-04-2019, 12:59 PM
RE: Convert Any Sequence to .ogg! - by Frank - 01-04-2019, 07:20 PM
RE: Convert Any Sequence to .ogg! - by Jacob_ - 01-04-2019, 08:09 PM
RE: Convert Any Sequence to .ogg! - by EtherBot - 05-09-2019, 12:32 AM
RE: Convert Any Sequence to .ogg! - by Frank - 05-09-2019, 02:38 PM
RE: Convert Any Sequence to .ogg! - by Alex_ - 05-09-2019, 04:30 PM
RE: Convert Any Sequence to .ogg! - by Frank - 05-09-2019, 04:38 PM
RE: Convert Any Sequence to .ogg! - by Lopyt - 07-23-2019, 11:41 AM
RE: Convert Any Sequence to .ogg! - by fox - 11-02-2019, 12:18 PM
RE: Convert Any Sequence to .ogg! - by Lopyt - 11-02-2019, 12:21 PM
RE: Convert Any Sequence to .ogg! - by XStep - 11-02-2019, 01:06 PM



Users browsing this thread:   1 Guest(s)


  •  Return to Top
  •  Contact Us
  •   Home
  •  Lite mode
© Rush Crafted with ❤ by iAndrew
Powered By MyBB, © 2002-2025 MyBB Group.
Linear Mode
Threaded Mode
View a Printable Version
Subscribe to this thread
Add Poll to this thread
Send thread to a friend