RSS

初出:2005年6月27日 19:27

RSSフィードのなかに記述するオーディオを表すアイテム(要素)はこんな感じ。

<enclosure url="MP3
AACファイルのパス" length="ファイルのバイト数" type="audio/mpeg"/>

このアイテムを自動で追加する方法ですが、BlogのエンジンがMovableType 2.xおよび3.xの場合は、以下の専用プラグインが配布されています。ほかのエンジンは...よく分かりません。

MT-Enclosures: A Movable Type Plugin

こいつをダウンロードすると「Enclosures.pl」というファイルが現れますので、それをMovableTypeの「plugins」というディレクトリに放り込みます。

次にMovableTypeの管理画面に入って「テンプレート」のメニューから「RSS2.0」のテンプレートを選択。RSS2.0テンプレートの下のほうにある、</item>タグの直前に<$MTEntryEnclosures mime="audio"/>というタグを追加します。準備はこれでOK。あとはエントリーを書く際に、MP3やらAACのファイルをリンクしてあげれば自動的にRSSに上記のアイテムを追加してくれるようです。

Podcasting対応のアプリといえば、今のところはiPodder(Mac,Win,GNU/Linuxあり)やiPodder X(Mac OS X用、こちらのほうが凄い)なわけですが、iTunesがこのRSSを認識してくれるようになれば必然的にそれがデファクトになるでしょう。しかし、どんなコンテンツをPodcastすればいいのかね? できることなら、15分くらいの音楽番組を作って毎週配信してみたいんだけど、JASRAQとか面倒だしなあ。っつーか、インターネットが普及して10年、今や誰でも音声を"放送"できるような状況にまでなったんだから、JASRAQやレコードレーベルはそういう時代観に沿った、新しい版権の仕組みを提示すべきだ。

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