RSS

初出:2006年6月28日 21:30

5月からプレミアム会員向けにテストをしていたmixiミュージックが一般開放されたので、早速使ってみました。

うちのmixiミュージック

使い方は結構簡単。Mac OS Xの場合は「mixi station」なるアプリケーションをダウンロードして、そいつを動かすと、iTunesで再生された曲がそのままmixiに送られて、それがサーバ側で蓄積されていく。mixiの個人ページでは、最近のプレイリスト、アーティスト別ランキング、曲別ランキングなどが見れて、その人の音楽的嗜好がモロバレになるっていう楽しい仕組み。さらに楽曲名はリンクになっていて、ポチっと押すと、最近その曲を聴いた他のユーザが分かったりする。うーん、楽しい。

モノは試しってことで、iTunesのパーティーシャッフルで適当に再生させているんだけど、相当マニアックな曲だとしても、誰か彼か聴いているんだねえ。たとえばディランの「エデンの門」。こんな曲誰も知らんでしょって思うんだけど、今日の昼に聴いている人がいた! でもスモールフェイセスの「Every Little Bit Hurts」を聴いたのは僕だけのようです。

…で、実はこれって、去年の春にこのブログで書いたアイデアと同じだったりする。アフェリエイトもしっかりやっている。

KenG Weblog - iTunesランキングってあったら楽しい!?

ここで僕は「そこで1位になる曲は ─ それがどんな曲であろうと ─ みんなに支持されているということになるわけだ」って書いたんだけど、今時点の総合ランキング1位を見てみると……This Is Love / 宇多田ヒカル。つ、つまんねー!

Googleさんは、この記事をこう解釈しました

記事の詳細ページ

記事の全文を表示します。関連するコメントやトラックバックなどもこちらからどうぞ。

本日のBGM

★印があったら「これは聴いてみてほしい!」という推薦曲です。曲名をクリックするとiTunes Storeへジャンプします。

'; // loop through the songs in the array and get 4 fields that I want to see foreach ($songs as $song) { $output .= '
  • '; if ($song["Rating"] == 100){ $output .= ''.$song["Rating"].''; } $output .= '
    '; $output .= '
    '.$song["Name"].''; $output .= '
    '.$song["Artist"].''; $output .= ''.$song["Album"].''; if ($song["Year"]){ $output .= '('.$song["Year"].')'; } $output .= '
  • '; } // end the table $output .= ''; // show my new table print ($output); } ?>

    Now & Then

    Twitter Updates

      OAuthRequest('https://api.twitter.com/1.1/statuses/user_timeline.json','GET',array('screen_name' =>$search_word,'count' =>'3')); //Jsonデータをオブジェクトに変更 $oObj = json_decode($vRequest); //var_dump(json_decode($vRequest)); //オブジェクトを展開 for($i_tweet = 0; $i_tweet < sizeof($oObj); $i_tweet++){ $screen_name = $oObj[$i_tweet] -> {'screen_name'};//ユーザーID $profile_image_url = $oObj[$i_tweet] -> {'profile_image_url'};//プロフィール画像のURL $text = $oObj[$i_tweet] -> {'text'};//ツイート $date = $oObj[$i_tweet] -> {'created_at'};//時間 $tweet_time=strtotime($date);//Unixタイムスタンプ形式に変換 $now_time=time();//現在の時刻をUnixタイムスタンプで取得 $relative_time=$now_time-$tweet_time;//つぶやかれたのが何秒前か if($relative_time<60){//ss $displayTime = $relative_time.'秒前'; }elseif($relative_time>=60 && $relative_time<(60*60)){//mm $displayTime = floor($relative_time/60).'分前'; }elseif($relative_time>=(60*60) && $relative_time<(60*60*24)){//hh $displayTime = floor($relative_time/(60*60)).'時間前'; }elseif($relative_time>=(60*60*24)){//日付 $displayTime = date('n月j日',$tweet_time); } //表示 echo '
    • ' . $text .'' . $displayTime . '
    • '; } ?>
    follow me on Twitter