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

Changing default video in rss feed


Hi !,
After publishing video from "your computer" ; I get embedded code in format :

<div id='playerexampleid'></div>
<script type='text/javascript'>
jwplayer('playerexampleid').setup({
playlist: '//content.jwplatform.com/feed/exampleid.rss',
width: '244',
height: '163'
});

The URL "content.jwplatform.com/feed/exampleid.rss" displays 3 quality levels i.e. 720p ; 360p ; 180p with default="true" set for 360p.

So, I would like to know how to set 720p as default in this rss?? or free account does not allow this?? or is there any other way to do it??

Thanks

1 Community Answers

Cooper Reid

JW Player Support Agent  
0 rated :

I’m afraid this can only be done using some JavaScript:

jwplayer(“player”).setup({
image: ‘bunny.jpg’,
sources: [
{file: ‘video1.mp4’, label: ’320p’},
{file: ‘video2.mp4’, label: ‘540p’, ‘default’: true},
{file: ‘video3.mp4’, label: ’720p’}
],
width:‘100%’
});

-Cooper

This question has received the maximum number of answers.