Fix rtmp again because chrome is picky about mime types
This commit is contained in:
parent
9dd0ee4446
commit
e80613c7ec
|
@ -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.43.0",
|
"version": "3.43.1",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "http://github.com/calzoneman/sync"
|
"url": "http://github.com/calzoneman/sync"
|
||||||
},
|
},
|
||||||
|
|
|
@ -18,6 +18,6 @@ window.RTMPPlayer = class RTMPPlayer extends VideoJSPlayer
|
||||||
480: [
|
480: [
|
||||||
{
|
{
|
||||||
link: data.id
|
link: data.id
|
||||||
contentType: 'video/flv'
|
contentType: 'rtmp/flv'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1231,7 +1231,7 @@
|
||||||
480: [
|
480: [
|
||||||
{
|
{
|
||||||
link: data.id,
|
link: data.id,
|
||||||
contentType: 'video/flv'
|
contentType: 'rtmp/flv'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue