mediaelement-2.15.1/000077500000000000000000000000001240062260100142225ustar00rootroot00000000000000mediaelement-2.15.1/.gitattributes000066400000000000000000000001421240062260100171120ustar00rootroot00000000000000* text=auto eol=lf *.jar binary *.mp3 binary *.mp4 binary *.ogv binary *.png binary *.webm binarymediaelement-2.15.1/.gitignore000066400000000000000000000003751240062260100162170ustar00rootroot00000000000000# silverlight stuff src/silverlight/obj/* src/silverlight/Bin/* build/AppManifest.xaml build/SilverlightMediaElementTestPage.html build/SilverlightMediaElement.pdb build/SilverlightMediaElement.dll tests/* newfeatures/* /mejs3/ node_modules local-build mediaelement-2.15.1/Gruntfile.js000066400000000000000000000061301240062260100165170ustar00rootroot00000000000000module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), concat: { me: { src: [ 'src/js/me-header.js', 'src/js/me-namespace.js', 'src/js/me-utility.js', 'src/js/me-plugindetector.js', 'src/js/me-featuredetection.js', 'src/js/me-mediaelements.js', 'src/js/me-shim.js', 'src/js/me-i18n.js', 'src/js/me-i18n-locale-de.js', 'src/js/me-i18n-locale-zh.js' ], dest: 'local-build/mediaelement.js' }, mep: { src: [ 'src/js/mep-header.js', 'src/js/mep-library.js', 'src/js/mep-player.js', 'src/js/mep-feature-playpause.js', 'src/js/mep-feature-stop.js', 'src/js/mep-feature-progress.js', 'src/js/mep-feature-time.js', 'src/js/mep-feature-volume.js', 'src/js/mep-feature-fullscreen.js', 'src/js/mep-feature-tracks.js', 'src/js/mep-feature-contextmenu.js', 'src/js/mep-feature-speed.js', 'src/js/mep-feature-postroll.js' ], dest: 'local-build/mediaelementplayer.js' }, bundle: { src: [ 'local-build/mediaelement.js', 'local-build/mediaelementplayer.js' ], dest: 'local-build/mediaelement-and-player.js' } }, uglify: { me: { src : ['local-build/mediaelement.js'], dest : 'local-build/mediaelement.min.js', banner : 'src/js/me-header.js' }, mep: { src : ['local-build/mediaelementplayer.js'], dest : 'local-build/mediaelementplayer.min.js', banner : 'src/js/mep-header.js' }, bundle: { src : ['local-build/mediaelement-and-player.js'], dest : 'local-build/mediaelement-and-player.min.js' } }, cssmin: { build: { src : ['src/css/mediaelementplayer.css'], dest : 'local-build/mediaelementplayer.min.css' } }, copy: { build: { expand : true, cwd : 'src/css/', src : ['*.png', '*.svg', '*.gif', '*.css'], dest : 'local-build/', flatten : true, filter : 'isFile' } } }); grunt.registerTask('default', ['concat', 'uglify', 'cssmin', 'copy']); };mediaelement-2.15.1/README.md000066400000000000000000000115411240062260100155030ustar00rootroot00000000000000# `