sync/player/raw-file.coffee

30 lines
877 B
CoffeeScript
Raw Normal View History

2015-07-03 18:24:21 +00:00
codecToMimeType = (codec) ->
switch codec
when 'mov/h264' then 'video/mp4'
when 'flv/h264' then 'video/flv'
when 'matroska/vp8', 'matroska/vp9' then 'video/webm'
when 'ogg/theora' then 'video/ogg'
when 'mp3' then 'audio/mp3'
when 'vorbis' then 'audio/vorbis'
else 'video/flv'
2015-07-01 16:38:01 +00:00
window.FilePlayer = class FilePlayer extends VideoJSPlayer
constructor: (data) ->
if not (this instanceof FilePlayer)
return new FilePlayer(data)
data.meta.direct =
480: [{
2015-07-03 18:24:21 +00:00
contentType: codecToMimeType(data.meta.codec)
2015-07-01 16:38:01 +00:00
link: data.id
}]
super(data)
load: (data) ->
data.meta.direct =
480: [{
2015-07-03 18:24:21 +00:00
contentType: codecToMimeType(data.meta.codec)
2015-07-01 16:38:01 +00:00
link: data.id
}]
super(data)