mirror of https://github.com/calzoneman/sync.git
Fix error for rtmp player
This commit is contained in:
parent
7efa3d4704
commit
dd770137e5
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,5 +18,6 @@ window.RTMPPlayer = class RTMPPlayer extends VideoJSPlayer
|
||||||
480: [
|
480: [
|
||||||
{
|
{
|
||||||
link: data.id
|
link: data.id
|
||||||
|
contentType: 'video/flv'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1230,7 +1230,8 @@
|
||||||
return data.meta.direct = {
|
return data.meta.direct = {
|
||||||
480: [
|
480: [
|
||||||
{
|
{
|
||||||
link: data.id
|
link: data.id,
|
||||||
|
contentType: 'video/flv'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue