我正在使用 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>
这很好,但我发现有两件事需要调整:
在
<media:content>
标签上,我想添加type
参数,指示 MIME 类型。有没有办法通过 KMC 界面做到这一点?我想更改它生成的缩略图的默认大小(并将图像后缀添加
.jpg
到 URL 的末尾)。KMC中是否有这样的选择?
看来我最终可能需要使用 API 自己即时构建 MRSS 提要(通过 API 从 Kaltura 提取视频数据)。你怎么看?
谢谢...