Fix rtmp again because chrome is picky about mime types

This commit is contained in:
Calvin Montgomery 2017-07-23 17:55:25 -07:00
parent 9dd0ee4446
commit e80613c7ec
3 changed files with 3 additions and 3 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.43.0", "version": "3.43.1",
"repository": { "repository": {
"url": "http://github.com/calzoneman/sync" "url": "http://github.com/calzoneman/sync"
}, },

View File

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

View File

@ -1231,7 +1231,7 @@
480: [ 480: [
{ {
link: data.id, link: data.id,
contentType: 'video/flv' contentType: 'rtmp/flv'
} }
] ]
}; };