Blame view

sources/apps/files_videoviewer/mediaelement/src/js/me-namespace.js 849 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  // Namespace
  var mejs = mejs || {};
  
  // version number
  mejs.version = '2.11.3';
  
  // player number (for missing, same id attr)
  mejs.meIndex = 0;
  
  // media types accepted by plugins
  mejs.plugins = {
  	silverlight: [
  		{version: [3,0], types: ['video/mp4','video/m4v','video/mov','video/wmv','audio/wma','audio/m4a','audio/mp3','audio/wav','audio/mpeg']}
  	],
  	flash: [
  		{version: [9,0,124], types: ['video/mp4','video/m4v','video/mov','video/flv','video/rtmp','video/x-flv','audio/flv','audio/x-flv','audio/mp3','audio/m4a','audio/mpeg', 'video/youtube', 'video/x-youtube']}
  		//,{version: [12,0], types: ['video/webm']} // for future reference (hopefully!)
  	],
  	youtube: [
  		{version: null, types: ['video/youtube', 'video/x-youtube', 'audio/youtube', 'audio/x-youtube']}
  	],
  	vimeo: [
  		{version: null, types: ['video/vimeo', 'video/x-vimeo']}
  	]
  };