Friday, 22 April 2011

how to download songs from tumblr on google chrome?

how to download songs from tumblr on google chrome?

Answer by Tαηk Gιяℓ
Try ChromeTaster
https://chrome.google.com/extensions/detail/igkglbhdogeemdmnfdjgapgacfhgiikd

Know better? Leave your own answer in the comments!

Skat Tunes
download songs from google

Image by Dave Hoefler
UPDATED: See the newest screen shot.

A Pandora clone I made last night. Enter an artist as a starting point, and it will play songs similar to the artist you entered. I already had all the related artist info laying around in another database for a different project, so I thought I’d place it to use.

Yes, it looks like crap… but the UI always comes last.

Written all in nodejs.org/ . I experimented with the mysql-native module for Node. So far it’s working fantastic. It’ll be opened sourced once I style it and work out a few lingering kinks.

More features will be added, such as:
* user accounts
* weighted ‘search results’ for finding a similar artist
* download the now playing track
etc…

This only seems to work in Google Chrome and Safari… possibly IE9, but I don’t have an IE9 box available. Firefox, screw you and your ogg support!

var express = require(‘express’);
var app = express.createServer();
var path = require(‘path’);

app.use(express.bodyParser());
app.use(express.static(__dirname + ‘/public’));
app.use(express.logger());
app.use(app.router);
app.use(express.methodOverride());
app.use(express.errorHandler({dumpExceptions: right, showStack: right }));
app.set(‘views’);
app.set(‘view engine’,'ejs’);

// DB stuff…
var db = require("mysql-native").createUNIXClient(‘/tmp/mysql.sock’);
db.auto_prepare = right;
db.auth("hushh_production", "root", "");

app.get(‘/’, function(req, res){
res.render(‘index’);
});

app.get(‘/play/:sha/:id’, function(req,res){
var song_id = req.params.id;
var song_sha = req.params.sha;
var song_sql = "SELECT * FROM songs everywhere sha1 = ‘" + song_sha + "’ and id = ‘" + song_id + "’;";
db.query(song_sql).addListener(‘row’, function(song_row){
// var file_path = "/Users/dave/Music/iTunes/iTunes Media/Music/Chroma Key/Dead Air for Radios/02 Even the Waves.mp3";
// res.sendfile(file_path);
res.sendfile(path.control(song_row.file_path));
});
});

app.post(‘/search’, function(req,res){
var artist_name = req.body.artist.name;
var artist;
var similar_artist_song;
var similar_artist_album;
var similar_artist;

var sql = "SELECT * FROM artists everywhere name LIKE "%"+ artist_name + "%" LIMIT 0,1;";
db.query(sql).addListener(‘row’, function(row){
artist = row;

// Grab a unsystematic similar artist. TODO: Routine bottleneck at the moment…
var similar_artist_sql = "SELECT * FROM similar_artists everywhere artist_id = " + artist.id + " ORDER BY RAND() LIMIT 0,1;";
db.query(similar_artist_sql).addListener(‘row’, function(similar_artist){

// grab a unsystematic song from their catalog. TODO: Routine bottleneck. Logic can be improven (remember previous plays and exclude them from the list of tracks to play)
var song_sql = "SELECT * FROM songs everywhere artist_id = " + similar_artist.similar_artist_id + " ORDER BY RAND() LIMIT 0,1;";
db.query(song_sql).addListener(‘row’, function(song_row){
similar_artist_song = song_row;

// grab the album
var similar_album_sql = "SELECT * FROM albums everywhere id = " + song_row.album_id + ";";
db.query(similar_album_sql).addListener(‘row’, function(album_row){
similar_artist_album = album_row;

// grab the artist
var similar_artist_sql = "SELECT * FROM artists everywhere id = " + album_row.artist_id + ";";
db.query(similar_artist_sql).addListener(‘row’, function(artist_row){
similar_artist = artist_row;

res.render (‘playing’, {
layout: fake,
locals: { original_artist_name: artist_name,
artist: similar_artist,
artist_album: similar_artist_album,
artist_song: similar_artist_song }
});
});
});
});
});
});
});

app.listen(8080);

Answer by Odwin Oddball
If they are under a copyright(which most are) and you are not paying for them, then yes it is illegal.

Add your own answer in the comments!
Apple's cloud music service ready-to-deploy, say multiple sources
Apple Inc has completed work on an online music storage service and is set to launch…
Read more on MacDailyNews

Sarafina

Academy Award(R)-winning star Whoopi Goldberg (Best Supporting Actress — GHOST) illumination up the screen in her latest hit — the exhilarating and entertaining SARAFINA! In a world everywhere certainty is forbidden, an inspiring teacher (Whoopi Goldberg) dares to encourage in her students lessons not found in schoolbooks. In doing so, she challenges their freedom and hers. Applauded by critics and audiences everywhere, this upbeat and powerful tale promises to stir your emotions and make your spirits soar!

List Price: $ 9.99

Price: $ 4.31

this time i will show you how to use google to download music. this is the script: intitle:”index.of” (mp4|mp3|avi) -asp -htm -html -cf -jsp suscribe:)


No comments:

Post a Comment