Poll

Bump

It didn't let me reply.
3 (60%)
Sorry.
2 (40%)

Total Members Voted: 5

Author Topic: Beepbox v3  (Read 11143 times)

« Last Edit: December 06, 2015, 02:47:51 AM by }]Crazy[{ »

Time to make my voice deep


I spent way too long with this, over an hour
I tried to make this but I think I've done enough for now
« Last Edit: December 06, 2015, 05:50:46 AM by K3k0m@n »


I was thinking about making a thread because I forgot what it was called, what a coincidence! :o




Wouldn't this fit better in Creativity, like threads #1 and #2 were?

Also, reposting this, for those that don't know about my embedder or use Steve's but want to have BeepBox embeds:
Code: [Select]
// ==UserScript==
// @name Blockland Embedder for BeepBox
// @namespace https://greasyfork.org/en/scripts/10233-too-many-embeds#beepbox
// @author Steve5451 and dargereldren
// @version 1.0.1
// @description Embed links from BeepBox.co
// @icon https://pbs.twimg.com/profile_images/2162768644/favicon_large.png
// @require http://code.jquery.com/jquery-2.1.1.min.js
// @include http://forum.blockland.us/*
// ==/UserScript==

$('a[href*="beepbox.co/#"],a[href*="beepbox.co/js.html#"]').each(function() {
var beepboxId = $(this).attr('href').split('#')[1];
embedMedia(beepboxId, $(this), 'beepboxExpand');
});

function embedMedia(medId, thisItem, embedType) {
thisItem.after(' <input type="button" value="Embed" class="embedMedia" id="' + embedType + '" expanded="false" medId="' + medId + '" /> ');
}

$(document).find(".embedMedia").click(function() {
if ($(this).attr('expanded') == "false") {
var thisId = $(this).attr('id');
if (thisId == 'beepboxExpand') {
$(this).after('<div><iframe src="http://www.beepbox.co/embed.html#' + $(this).attr('medId') + '" frameborder="0" height="200" width="800"></iframe></div>');
}

$(this).val("Remove")
$(this).attr('expanded', 'true');
} else {
$(this).next().remove();
$(this).val("Embed")
$(this).attr('expanded', 'false');
}
});
This uses the embed URL at http://beepbox.co/embed.html#<yoursongdata>, which means you'll be able to play the song, but you won't see the notes.
That URL is also the only way to embed BeepBox songs on your website.
« Last Edit: December 06, 2015, 01:54:09 PM by dargereldren »




I would remake a whole song on this, but it takes me way too long to find the right notes for each beat and I think hearing the same thing over and over again while I change one note is gonna make me clinically insane if I continued :/

made this in like 3 minutes
clicky
« Last Edit: December 06, 2015, 05:06:34 PM by Office-Pirate »