
Problems with MRSS video feeds
I'm having some trouble using JWPlayer to play videos from a given MRSS video feed. After troubleshooting, I found the problem is related to the videos being represented in the following format in MRSS:
<media:content isDefault="true" medium="video">
<media:rating scheme="urn:simple">topic</media:rating>
<media:player url="http://www.abc.com/abc.mp4" />
</media:content>
If I change them to the following format it does work fine with JWPlayer, but that will require me to modify these 3rd party MRSS feeds.
<media:content url="http://www.abc.com/abc.mp4"" type="video/mp4">
</media:content>
I just wanted to ask if this is a known bug with JWPlayer.
Thanks!