我正在使用Kaltura KMC生成Yahoo! MRSS饲料(per the info here)。
它创建的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中提取视频数据)。你觉得怎么样?
谢谢...
答案 0 :(得分:0)
您可以使用动态MRSS 上传您拥有的XSD,并修改原始版本。