Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Media ID in RSS - asked more than once


No one is explaining putting mediaid in rss playlists

I try this but it will not load, Please explain right way to do it

<item>
<title>Introduction</title>
<description>Runs 1:03 | Meet Tommo</description>
<jwplayer:image>https://on2dvd-clients-syd.s3.amazonaws.com/home/j6dgp903/platform/thumb-2015-01-30-21h59m07s188.jpg</jwplayer:image>
<jwplayer:source file="https://on2dvd-clients-syd.s3.amazonaws.com/home/j6dgp903/platform/intro_Apple_HLS_h264_SF_4x3_480p/intro_Apple_HLS_h264_SF_4x3_480p.m3u8" mediaid: "u2qjkMqu" />
<jwplayer:source file="https://on2dvd-clients-syd.s3.amazonaws.com/home/j6dgp903/platform/intro_768Kbps_360p.mp4" mediaid: "DrACjBnO" />
<jwplayer:source file="https://on2dvd-clients-syd.s3.amazonaws.com/home/j6dgp903/platform/intro_1200Kbps_480p.mp4" mediaid: "xCQHODgI" />
</item>

3 Community Answers

Todd

JW Player Support Agent  
0 rated :

Please include your media ID in a <guid> tag for each <item>:

<guid isPermaLink="false">s8BPzDe0</guid>

Here’s a full example:

<?xml version=“1.0” encoding=“UTF-8”?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>Big Buck Bunny</title>
<link>http://www.bigbuckbunny.org/</link>
<description>Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.</description>
<image>
<url>http://test.com/s8BPzDe0.jpg</url>
<title>Big Buck Bunny</title>
<link>http://www.bigbuckbunny.org/</link>

</image> <itunes:keywords>blender, test</itunes:keywords> <itunes:image href="http://test.com/s8BPzDe0.jpg" /> <item> <title>Big Buck Bunny</title> <link>http://www.bigbuckbunny.org/</link> <description>Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.</description> <pubDate>Thu, 10 Apr 2008 08:57:00 -0000</pubDate> <guid isPermaLink="false">s8BPzDe0</guid> <enclosure url="http://test.com/s8BPzDe0" length="246589210" type="video/mp4" /> <itunes:duration>596</itunes:duration> <itunes:keywords>blender, test</itunes:keywords> <media:content url="http://test.com/s8BPzDe0.mp4" type="video/mp4" duration="596.48" fileSize="246589210"> <media:thumbnail url="http://test.com/s8BPzDe0.jpg" /> <media:player url="http://www.bigbuckbunny.org/" /> <media:keywords>blender, test</media:keywords> </media:content> </item> </channel> </rss>

mark

User  
0 rated :

Hi Todd
There is still a problem with this.
You say include the GUID for each <item> tag
BUT, I have rss feeds with multiple sources for item.
DASH + HLS+ MP4
Each source will have it's own media id
How then is this constructed

Todd

JW Player Support Agent  
0 rated :

My suggestion would be to use the same media ID for all the versions, since they are all the same video, just different video sources. In the RSS playlists that we generate, the <guid> and <jwplayer:source> tags are both fields for each <item>.

This question has received the maximum number of answers.