Fix error for rtmp player

This commit is contained in:
Calvin Montgomery 2017-07-15 20:17:13 -07:00
parent 7efa3d4704
commit dd770137e5
3 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery", "author": "Calvin Montgomery",
"name": "CyTube", "name": "CyTube",
"description": "Online media synchronizer and chat", "description": "Online media synchronizer and chat",
"version": "3.41.0", "version": "3.41.1",
"repository": { "repository": {
"url": "http://github.com/calzoneman/sync" "url": "http://github.com/calzoneman/sync"
}, },

View File

@ -18,5 +18,6 @@ window.RTMPPlayer = class RTMPPlayer extends VideoJSPlayer
480: [ 480: [
{ {
link: data.id link: data.id
contentType: 'video/flv'
} }
] ]

View File

@ -1230,7 +1230,8 @@
return data.meta.direct = { return data.meta.direct = {
480: [ 480: [
{ {
link: data.id link: data.id,
contentType: 'video/flv'
} }
] ]
}; };