Showing posts with label music. Show all posts
Showing posts with label music. Show all posts

Monday, July 28, 2014

Artist collections


I fetched albums and songs with youtube media links for one of the best singer of all times "Zeki Müren" and the coffee mate man "Tom Waits".
Project and data fetcher scripts are hosted on github.

Friday, April 25, 2014

baudio by @substack

Eğer takip etmiyorsanız @substack takip edilecek kişilerdendir.

Javascript ile müzik yapmak için geliştirilmiş çok sevdiğim şu paketin de geliştiricisi : baudio

Yarım saatlik şu videosunu da izlerseniz bu paket hakkında daha çok fikre sahip olursunuz.



Baudio ile muzik yapmak javascript geliştiriciler için çok daha eğlenceli :)

Örnek :
var baudio = require('baudio');

var n = 0;
var b = baudio(function (t) {
    var x = Math.sin(t * 262 + Math.sin(n));
    n += Math.sin(t);
    return x;
});
b.play();