TABLE OF CONTENTS
Description
You can play your video content through Ex.co player.
High-level requirements
MRSS player work principle
Video from (url -
<media:content url="""
>) is trimmed and uploaded to our CDN;- Player will try to locate an url with
.mp4
file, with medium quality (480p source withwidth
attribute value between [700..900]), ifwidth
attribute is not present, the best quality video will be selected based onfileSize
attribute; - Supported feed tags are (tags should be under the
<channel><item>REQUIRED_TAGS_HERE</item></channel>
tag): - Sources with size larger than 100 MB will be excluded.
Tag | Description | Required |
---|---|---|
| Will be used as video title | false |
| Will be used to include video creation date to the scene | false |
| The URL to use when a user clicks on the CTA button | false |
| Will be used as source for preview image | false |
| Will be used as video title if | false |
| Will be used to search | false |
| Will be used as video source | false |
| Will be used as source of content category(ies) | false |
| Will be used as source of content category(ies) | false |
Required attributes for <media:content>
tag:
Attribute | Description |
---|---|
| Direct link to video |
| Video duration is seconds |
| Video size is bytes |
| Video width is pixels |
| Video height is pixels |
| Content language |
Example
.mp4 file, width attribute present
<media:group> <media:content url="https://mcd-fl.playbuzz.com/video/upload/sp_hd/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.mp4" medium="video" type="video/mp4" duration="80" width="720" fileSize="1020"/> <media:content url="https://mcd-fl.playbuzz.com/video/upload/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.mp4" medium="video" type="video/mp4" duration="80" width="1080" fileSize="100200"/> <media:thumbnail url="https://mcd.playbuzz.com/video/upload/so_4/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.jpg"/> </media:group>
First <media:content url>
will be used as video source since width
of first tag fulfill width > 700 && width < 900 condition.
.mp4 file, without width attribute
<media:group> <media:content url="https://mcd-fl.playbuzz.com/video/upload/sp_hd/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.mp4" medium="video" type="video/mp4" duration="80" fileSize="1020"/> <media:content url="https://mcd-fl.playbuzz.com/video/upload/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.mp4" medium="video" type="video/mp4" duration="80" fileSize="100200"/> <media:thumbnail url="https://mcd.playbuzz.com/video/upload/so_4/v1490095101/landscape2d904e3d-8d90-441c-be66-39ba450113ed_1584547379303.jpg"/> </media:group>
Second <media:content url>
will be used as video source, based on bigger fileSize
.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article