Kaltura KMC を使用して Yahoo! MRSS フィード (情報はこちら)。
作成するフィードは次のようになります。
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:dcterms="http://purl.org/dc/terms/">
<channel>
<title>yahoo mrss feed</title>
<link>http://xxxx.com</link>
<description></description>
<item>
<title>My Dog Clip</title>
<link>http://xxxx.com?videoid=0_udwmgjec</link>
<media:content url="http://xxxx.com/p/100/sp/10000/serveFlavor/flavorId/0_e5h0z4cf">
<media:title>My Dog Clip</media:title>
<media:description>Here is a clip of the dog playing!</media:description>
<media:keywords>dog clip</media:keywords>
<media:thumbnail url="http://xxxx.com/p/100/sp/10000/thumbnail/entry_id/0_udwmgjec/version/100002"></media:thumbnail>
<media:category scheme="http://search.yahoo.com/mrss/category_schema">Entertainment & TV</media:category>
<media:player url="http://xxxx.com/kwidget/wid/_100/entry_id/0_udwmgjec/ui_conf_id/48501"></media:player>
<media:rating scheme="urn:simple"></media:rating>
</media:content>
</item>
</channel>
</rss>
これはかなり良いですが、調整が必要なことが 2 つあります。
タグに、MIME タイプを示すパラメータ
<media:content>
を追加したいと思います。type
KMC インターフェイスを介してこれを行う方法はありますか?生成されるサムネイルのデフォルト サイズを変更したいと思います (また
.jpg
、URL の末尾に などの画像サフィックスを追加します)。KMC にそのためのオプションはありますか?
API を使用して MRSS フィードをオンザフライで構築する必要があるようです (API を介して Kaltura からビデオ データをプルします)。どう思いますか?
ありがとうございました...