0
我正在使用Kaltura KMC生成Yahoo! MRSS飼料(per the info here)。如何將參數添加到由Kaltura KMC生成的Yahoo MRSS feed?
它創建的飼料是這樣的:
<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>
這是相當不錯的,但我看到兩件事情需要調整:
在
<media:content>
標籤,我想添加type
參數,指示MIME類型。有沒有辦法通過KMC界面來做到這一點?我想更改其生成的縮略圖的默認大小(並將圖像後綴添加到URL的末尾,例如
.jpg
)。 KMC有沒有這樣的選擇?
好像我可能最終需要使用API來構建MRSS養活我自己上飛(通過API甩開Kaltura的視頻數據)。你怎麼看?
謝謝...
謝謝。使用免費的開源KMC,使用自定義XSD的選項不可用。但是,這是在我的付費KMC帳戶。 – Eric