├── .gitignore ├── Gruntfile.js ├── README.md ├── bower.json ├── dist ├── css │ ├── font │ │ ├── DroidSansMono │ │ │ ├── DroidSansMono.eot │ │ │ ├── DroidSansMono.svg │ │ │ ├── DroidSansMono.ttf │ │ │ ├── DroidSansMono.woff │ │ │ ├── Google Android License.txt │ │ │ ├── demo.html │ │ │ └── stylesheet.css │ │ └── mbAudioFont │ │ │ ├── master │ │ │ ├── mbaudio_font-regular.otf │ │ │ └── mbaudio_font.glyphs │ │ │ ├── mbaudio_font.eot │ │ │ ├── mbaudio_font.svg │ │ │ ├── mbaudio_font.ttf │ │ │ ├── mbaudio_font.woff │ │ │ └── stylesheet.css │ ├── jQuery.mb.miniAudioPlayer.min.css │ ├── jquery.mb.miniAudioPlayer.css │ └── spectrum.min.css ├── index.html ├── jquery.mb.miniAudioPlayer.js ├── jquery.mb.miniAudioPlayer.min.js ├── php │ └── map_download.php ├── skinMaker.html ├── swf │ └── jquery.jplayer.swf └── test.html ├── examples ├── demo.html └── demo_auto_play_next.html ├── licenses ├── GPL-LICENSE.txt └── MIT-LICENSE.txt ├── package.json ├── resources ├── id3 │ ├── binaryajax.js │ ├── id3-minimized.js │ ├── id3.js │ └── id3.min.js ├── jquery.jplayer.swf ├── map_download.php └── spectrum-cp │ ├── spectrum.css │ └── spectrum.js └── src ├── css ├── font │ ├── DroidSansMono │ │ ├── DroidSansMono.eot │ │ ├── DroidSansMono.svg │ │ ├── DroidSansMono.ttf │ │ ├── DroidSansMono.woff │ │ ├── Google Android License.txt │ │ ├── demo.html │ │ └── stylesheet.css │ └── mbAudioFont │ │ ├── master │ │ ├── mbaudio_font-regular.otf │ │ └── mbaudio_font.glyphs │ │ ├── mbaudio_font.eot │ │ ├── mbaudio_font.svg │ │ ├── mbaudio_font.ttf │ │ ├── mbaudio_font.woff │ │ └── stylesheet.css └── jquery.mb.miniAudioPlayer.css ├── dep ├── id3.min.js ├── jquery.jplayer.min.js ├── jquery.mb.CSSAnimate.min.js ├── jquery.mbBrowser.min.js └── jquery.metadata.js ├── index.tmpl ├── jquery.mb.miniPlayer.src.js └── skinMaker.tmpl /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: Gruntfile.js 5 | last modified: 10/25/18 8:01 PM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | module.exports = function(grunt) { 23 | 24 | grunt.initConfig({ 25 | pkg: grunt.file.readJSON('package.json'), 26 | 27 | copy: { 28 | dist: { 29 | files: [ 30 | {flatten: true, expand: true, cwd: '../jquery.mb.browser/inc/', src: ['jquery.mbBrowser.min.js'], dest: 'src/dep/'}, 31 | {flatten: true, expand: true, cwd: '../jquery.mb.CSSAnimate/inc/', src: ['jquery.mb.CSSAnimate.min.js'], dest: 'src/dep/'}, 32 | {flatten: false, expand: true, cwd: 'src/css/', src: ['*.css'], dest: 'dist/css/'}, 33 | {flatten: false, expand: true, cwd: 'src/css/font/', src: ['**'], dest: 'dist/css/font/'}, 34 | {flatten: false, expand: true, cwd: 'resources/', src: ['*.swf'], dest: 'dist/swf/'}, 35 | {flatten: false, expand: true, cwd: 'resources/', src: ['*.php'], dest: 'dist/php/'}, 36 | {flatten: true, expand: true, cwd: 'src/', src: ['*.tmpl'], dest: 'dist/', 37 | rename: function(dest, src) { 38 | return dest + src.replace('.tmpl','.html'); 39 | }} 40 | ] 41 | } 42 | }, 43 | 44 | concat: { 45 | options: { 46 | separator: ';' 47 | }, 48 | dist: { 49 | src: [ 'src/*.js','src/dep/*.js'], 50 | dest: 'dist/<%= pkg.title %>.js' 51 | } 52 | }, 53 | 54 | uglify: { 55 | options: { 56 | banner: '/*' + 57 | '<%= pkg.title %> <%= grunt.template.today("dd-mm-yyyy") %>\n' + 58 | ' _ jquery.mb.components \n' + 59 | ' _ email: matbicoc@gmail.com \n' + 60 | ' _ Copyright (c) 2001-<%= grunt.template.today("yyyy") %>. Matteo Bicocchi (Pupunzi); \n' + 61 | ' _ blog: http://pupunzi.open-lab.com \n' + 62 | ' _ Open Lab s.r.l., Florence - Italy \n' + 63 | ' */ \n' 64 | }, 65 | 66 | dist: { 67 | files: { 68 | 'dist/<%= pkg.title %>.min.js': ['<%= concat.dist.dest %>'] 69 | } 70 | } 71 | }, 72 | 73 | cssmin: { 74 | options: { 75 | shorthandCompacting: false, 76 | roundingPrecision: -1 77 | }, 78 | dist: { 79 | files: { 80 | 'dist/css/<%= pkg.title %>.min.css': ['src/css/*.css'], 81 | 'dist/css/spectrum.min.css': ['resources/spectrum-cp/spectrum.css'] 82 | } 83 | } 84 | }, 85 | 86 | includereplace: { 87 | dist: { 88 | options: { 89 | prefix: '{{ ', 90 | suffix: ' }}', 91 | globals: { 92 | version: '<%= pkg.version %>', 93 | pkg_name: '<%= pkg.title %>' 94 | } 95 | }, 96 | files: [ 97 | {src: 'dist/*.js', expand: true}, 98 | {src: 'dist/*.html', expand: true}, 99 | {src: 'dist/css/*.css', expand: true} 100 | ] 101 | } 102 | }, 103 | 104 | watch: { 105 | files: ['src/css/*.css','src/*.js','src/*.html', 'Gruntfile.js'], 106 | tasks: ['copy','concat', 'uglify', 'cssmin', 'includereplace'] 107 | }, 108 | 109 | buildnumber: { 110 | options: { 111 | field: 'buildnum' 112 | }, 113 | files: ['package.json', 'bower.json'] 114 | }, 115 | 116 | bump: { 117 | options: { 118 | files: ['package.json', 'bower.json'], 119 | updateConfigs: [], 120 | commit: true, 121 | commitMessage: 'Release v%VERSION%', 122 | commitFiles: ['-a'], 123 | createTag: true, 124 | tagName: '%VERSION%', 125 | tagMessage: 'Version %VERSION%', 126 | push: true, 127 | pushTo: 'https://github.com/pupunzi/jquery.mb.miniAudioPlayer.git', 128 | gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d', 129 | globalReplace: false, 130 | prereleaseName: false, 131 | regExp: false 132 | } 133 | } 134 | 135 | }); 136 | 137 | grunt.loadNpmTasks('grunt-include-replace'); 138 | grunt.loadNpmTasks('grunt-contrib-copy'); 139 | grunt.loadNpmTasks('grunt-contrib-uglify'); 140 | grunt.loadNpmTasks('grunt-contrib-concat'); 141 | grunt.loadNpmTasks('grunt-contrib-cssmin'); 142 | grunt.loadNpmTasks('grunt-contrib-watch'); 143 | grunt.loadNpmTasks('grunt-build-number'); 144 | grunt.loadNpmTasks('grunt-bump'); 145 | 146 | grunt.registerTask('buildN', ['buildnumber']); 147 | grunt.registerTask('default', ['copy','concat', 'uglify', 'cssmin', 'includereplace', 'buildnumber']); 148 | 149 | }; 150 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mb.miniAudioPlayer 2 | 3 | __An open source jQuery component to build a mini audio player for your mp3 or ogg files.__ 4 | 5 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer plug-in realized by © Happyworm LTD. (many thanks to Mark Boas) 6 | 7 | ![mb.menu](http://pupunzi.open-lab.com/wp-content/uploads/2011/05/DSC03757.jpg) 8 | 9 | [jquery.mb.components](http://pupunzi.com/), another way of thinking the web 10 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.mb.miniAudioPlayer", 3 | "version": "1.8.7", 4 | "homepage": "http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-miniaudioplayer/", 5 | "authors": [ 6 | "pupunzi" 7 | ], 8 | "description": "This plugin let you add a minimal full featured player that takes advantage of the new HTML5 AUDIO tag with a flash fallback for browsers that don't support it. It is built on the jPlayer library", 9 | "main": "src/jquery.mb.miniPlayer.src.js", 10 | "keywords": [ 11 | "jquery-plugin", 12 | "audio", 13 | "html5", 14 | "player" 15 | ], 16 | "license": "MIT", 17 | "ignore": [ 18 | "**/.*", 19 | "node_modules", 20 | "bower_components", 21 | "test", 22 | "tests" 23 | ], 24 | "buildnum": "49926" 25 | } -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/DroidSansMono.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.eot -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.ttf -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/DroidSansMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/DroidSansMono/DroidSansMono.woff -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/Google Android License.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2008 The Android Open Source Project 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | ########## 16 | 17 | This directory contains the fonts for the platform. They are licensed 18 | under the Apache 2 license. 19 | -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/demo.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | Font Face Demo 30 | 31 | 42 | 43 | 44 | 45 |
46 |

Font-face Demo for the Droid Sans Mono Font

47 | 48 | 49 | 50 |

Droid Sans Mono Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

51 | 52 |
53 | 54 | 55 | -------------------------------------------------------------------------------- /dist/css/font/DroidSansMono/stylesheet.css: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: stylesheet.css 5 | last modified: 10/25/18 8:01 PM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 19, 2011 05:14:32 AM America/New_York */ 23 | 24 | 25 | 26 | @font-face { 27 | font-family: 'DroidSansMonoRegular'; 28 | src: url('DroidSansMono.eot'); 29 | src: url('DroidSansMono.eot?#iefix') format('embedded-opentype'), 30 | url('DroidSansMono.woff') format('woff'), 31 | url('DroidSansMono.ttf') format('truetype'), 32 | url('DroidSansMono.svg#DroidSansMonoRegular') format('svg'); 33 | font-weight: normal; 34 | font-style: normal; 35 | 36 | } 37 | 38 | -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/master/mbaudio_font-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/master/mbaudio_font-regular.otf -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/master/mbaudio_font.glyphs: -------------------------------------------------------------------------------- 1 | { 2 | copyright = "Copyright (c) 2010 by mb.ideas. All rights reserved."; 3 | customParameters = ( 4 | { 5 | name = vendorID; 6 | value = "MB "; 7 | }, 8 | { 9 | name = glyphOrder; 10 | value = ( 11 | ".notdef", 12 | uni0000, 13 | uni000D, 14 | uni00A0, 15 | F, 16 | N, 17 | O, 18 | P, 19 | R, 20 | S, 21 | V, 22 | l, 23 | m, 24 | p, 25 | uni2000, 26 | uni2001, 27 | uni2002, 28 | uni2003, 29 | uni2004, 30 | uni2005, 31 | uni2006, 32 | uni2007, 33 | uni2008, 34 | uni2009, 35 | uni200A, 36 | endash, 37 | emdash, 38 | uni202F, 39 | uni205F 40 | ); 41 | } 42 | ); 43 | date = "2010-07-11 13:49:44 +0000"; 44 | designer = "Matteo Bicocchi"; 45 | familyName = "mbaudio_font"; 46 | fontMaster = ( 47 | { 48 | ascender = 1536; 49 | capHeight = 1216; 50 | customParameters = ( 51 | { 52 | name = typoAscender; 53 | value = 1536; 54 | }, 55 | { 56 | name = typoDescender; 57 | value = "-512"; 58 | }, 59 | { 60 | name = typoLineGap; 61 | value = 0; 62 | }, 63 | { 64 | name = underlinePosition; 65 | value = "-154"; 66 | } 67 | ); 68 | descender = "-512"; 69 | id = "4C42F807-EDC7-4526-B56E-0964A4331130"; 70 | weightValue = 400; 71 | widthValue = 5; 72 | xHeight = 1216; 73 | } 74 | ); 75 | glyphs = ( 76 | { 77 | glyphname = F; 78 | layers = ( 79 | { 80 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 81 | name = Regular; 82 | paths = ( 83 | { 84 | closed = 1; 85 | nodes = ( 86 | "1618 576 LINE", 87 | "978 -64 LINE", 88 | "978 1216 LINE" 89 | ); 90 | }, 91 | { 92 | closed = 1; 93 | nodes = ( 94 | "928 576 LINE", 95 | "288 -64 LINE", 96 | "288 1216 LINE" 97 | ); 98 | }, 99 | { 100 | closed = 1; 101 | nodes = ( 102 | "1772 -64 LINE", 103 | "1644 -64 LINE", 104 | "1644 1216 LINE", 105 | "1772 1216 LINE" 106 | ); 107 | } 108 | ); 109 | width = 2048; 110 | } 111 | ); 112 | unicode = 0046; 113 | }, 114 | { 115 | glyphname = N; 116 | layers = ( 117 | { 118 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 119 | name = Regular; 120 | paths = ( 121 | { 122 | closed = 1; 123 | nodes = ( 124 | "1602 -64 LINE", 125 | "962 576 LINE", 126 | "1602 1216 LINE" 127 | ); 128 | }, 129 | { 130 | closed = 1; 131 | nodes = ( 132 | "912 -64 LINE", 133 | "272 576 LINE", 134 | "912 1216 LINE" 135 | ); 136 | } 137 | ); 138 | width = 2048; 139 | } 140 | ); 141 | unicode = 004E; 142 | }, 143 | { 144 | glyphname = O; 145 | layers = ( 146 | { 147 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 148 | name = Regular; 149 | paths = ( 150 | { 151 | closed = 1; 152 | nodes = ( 153 | "1082 576 LINE", 154 | "442 -64 LINE", 155 | "442 1216 LINE" 156 | ); 157 | }, 158 | { 159 | closed = 1; 160 | nodes = ( 161 | "1772 576 LINE", 162 | "1132 -64 LINE", 163 | "1132 1216 LINE" 164 | ); 165 | } 166 | ); 167 | width = 2048; 168 | } 169 | ); 170 | unicode = 004F; 171 | }, 172 | { 173 | glyphname = P; 174 | layers = ( 175 | { 176 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 177 | name = Regular; 178 | paths = ( 179 | { 180 | closed = 1; 181 | nodes = ( 182 | "1408 640 LINE", 183 | "768 0 LINE", 184 | "768 1280 LINE" 185 | ); 186 | } 187 | ); 188 | width = 2048; 189 | } 190 | ); 191 | unicode = 0050; 192 | }, 193 | { 194 | glyphname = R; 195 | layers = ( 196 | { 197 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 198 | name = Regular; 199 | paths = ( 200 | { 201 | closed = 1; 202 | nodes = ( 203 | "1772 -64 LINE", 204 | "1132 576 LINE", 205 | "1772 1216 LINE" 206 | ); 207 | }, 208 | { 209 | closed = 1; 210 | nodes = ( 211 | "1082 -64 LINE", 212 | "442 576 LINE", 213 | "1082 1216 LINE" 214 | ); 215 | }, 216 | { 217 | closed = 1; 218 | nodes = ( 219 | "416 -64 LINE", 220 | "288 -64 LINE", 221 | "288 1216 LINE", 222 | "416 1216 LINE" 223 | ); 224 | } 225 | ); 226 | width = 2048; 227 | } 228 | ); 229 | unicode = 0052; 230 | }, 231 | { 232 | glyphname = S; 233 | layers = ( 234 | { 235 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 236 | name = Regular; 237 | paths = ( 238 | { 239 | closed = 1; 240 | nodes = ( 241 | "1600 38 LINE", 242 | "448 38 LINE", 243 | "448 1190 LINE", 244 | "1600 1190 LINE" 245 | ); 246 | } 247 | ); 248 | width = 2048; 249 | } 250 | ); 251 | unicode = 0053; 252 | }, 253 | { 254 | glyphname = V; 255 | layers = ( 256 | { 257 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 258 | name = Regular; 259 | paths = ( 260 | { 261 | closed = 1; 262 | nodes = ( 263 | "900 -93 LINE", 264 | "430 341 LINE", 265 | "132 341 LINE", 266 | "132 927 LINE", 267 | "430 927 LINE", 268 | "900 1362 LINE" 269 | ); 270 | } 271 | ); 272 | width = 1100; 273 | } 274 | ); 275 | unicode = 0056; 276 | }, 277 | { 278 | glyphname = l; 279 | lastChange = "2014-11-04 20:08:02 +0100"; 280 | layers = ( 281 | { 282 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 283 | name = Regular; 284 | paths = ( 285 | { 286 | closed = 1; 287 | nodes = ( 288 | "750 958 OFFCURVE", 289 | "733 941 OFFCURVE", 290 | "700 941 CURVE SMOOTH", 291 | "684 941 OFFCURVE", 292 | "617 976 OFFCURVE", 293 | "498 1045 CURVE SMOOTH", 294 | "285 1173 LINE SMOOTH", 295 | "268 1183 OFFCURVE", 296 | "259 1197 OFFCURVE", 297 | "259 1215 CURVE SMOOTH", 298 | "259 1250 OFFCURVE", 299 | "276 1267 OFFCURVE", 300 | "309 1267 CURVE SMOOTH", 301 | "325 1267 OFFCURVE", 302 | "392 1232 OFFCURVE", 303 | "511 1163 CURVE SMOOTH", 304 | "724 1035 LINE SMOOTH", 305 | "741 1025 OFFCURVE", 306 | "750 1011 OFFCURVE", 307 | "750 992 CURVE SMOOTH" 308 | ); 309 | }, 310 | { 311 | closed = 1; 312 | nodes = ( 313 | "750 597 OFFCURVE", 314 | "733 580 OFFCURVE", 315 | "700 580 CURVE SMOOTH", 316 | "250 580 LINE SMOOTH", 317 | "217 580 OFFCURVE", 318 | "200 597 OFFCURVE", 319 | "200 630 CURVE SMOOTH", 320 | "200 663 OFFCURVE", 321 | "217 680 OFFCURVE", 322 | "250 680 CURVE SMOOTH", 323 | "700 680 LINE SMOOTH", 324 | "733 680 OFFCURVE", 325 | "750 663 OFFCURVE", 326 | "750 630 CURVE SMOOTH" 327 | ); 328 | }, 329 | { 330 | closed = 1; 331 | nodes = ( 332 | "750 242 OFFCURVE", 333 | "741 228 OFFCURVE", 334 | "724 218 CURVE SMOOTH", 335 | "511 90 LINE SMOOTH", 336 | "392 20 OFFCURVE", 337 | "325 -15 OFFCURVE", 338 | "309 -15 CURVE SMOOTH", 339 | "276 -15 OFFCURVE", 340 | "259 2 OFFCURVE", 341 | "259 37 CURVE SMOOTH", 342 | "259 55 OFFCURVE", 343 | "268 69 OFFCURVE", 344 | "285 79 CURVE SMOOTH", 345 | "498 207 LINE SMOOTH", 346 | "617 277 OFFCURVE", 347 | "684 312 OFFCURVE", 348 | "700 312 CURVE SMOOTH", 349 | "733 312 OFFCURVE", 350 | "750 295 OFFCURVE", 351 | "750 260 CURVE SMOOTH" 352 | ); 353 | } 354 | ); 355 | width = 900; 356 | } 357 | ); 358 | unicode = 006C; 359 | }, 360 | { 361 | glyphname = m; 362 | layers = ( 363 | { 364 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 365 | name = Regular; 366 | paths = ( 367 | { 368 | closed = 1; 369 | nodes = ( 370 | "641 1197 OFFCURVE", 371 | "632 1183 OFFCURVE", 372 | "615 1173 CURVE SMOOTH", 373 | "402 1045 LINE SMOOTH", 374 | "283 976 OFFCURVE", 375 | "216 941 OFFCURVE", 376 | "200 941 CURVE SMOOTH", 377 | "167 941 OFFCURVE", 378 | "150 958 OFFCURVE", 379 | "150 992 CURVE SMOOTH", 380 | "150 1011 OFFCURVE", 381 | "159 1025 OFFCURVE", 382 | "176 1035 CURVE SMOOTH", 383 | "389 1163 LINE SMOOTH", 384 | "508 1232 OFFCURVE", 385 | "575 1267 OFFCURVE", 386 | "591 1267 CURVE SMOOTH", 387 | "624 1267 OFFCURVE", 388 | "641 1250 OFFCURVE", 389 | "641 1215 CURVE SMOOTH" 390 | ); 391 | }, 392 | { 393 | closed = 1; 394 | nodes = ( 395 | "700 597 OFFCURVE", 396 | "683 580 OFFCURVE", 397 | "650 580 CURVE SMOOTH", 398 | "200 580 LINE SMOOTH", 399 | "167 580 OFFCURVE", 400 | "150 597 OFFCURVE", 401 | "150 630 CURVE SMOOTH", 402 | "150 663 OFFCURVE", 403 | "167 680 OFFCURVE", 404 | "200 680 CURVE SMOOTH", 405 | "650 680 LINE SMOOTH", 406 | "683 680 OFFCURVE", 407 | "700 663 OFFCURVE", 408 | "700 630 CURVE SMOOTH" 409 | ); 410 | }, 411 | { 412 | closed = 1; 413 | nodes = ( 414 | "641 2 OFFCURVE", 415 | "624 -15 OFFCURVE", 416 | "591 -15 CURVE SMOOTH", 417 | "575 -15 OFFCURVE", 418 | "508 20 OFFCURVE", 419 | "389 90 CURVE SMOOTH", 420 | "176 218 LINE SMOOTH", 421 | "159 228 OFFCURVE", 422 | "150 242 OFFCURVE", 423 | "150 260 CURVE SMOOTH", 424 | "150 295 OFFCURVE", 425 | "167 312 OFFCURVE", 426 | "200 312 CURVE SMOOTH", 427 | "216 312 OFFCURVE", 428 | "283 277 OFFCURVE", 429 | "402 207 CURVE SMOOTH", 430 | "615 79 LINE SMOOTH", 431 | "632 69 OFFCURVE", 432 | "641 55 OFFCURVE", 433 | "641 37 CURVE SMOOTH" 434 | ); 435 | } 436 | ); 437 | width = 900; 438 | } 439 | ); 440 | unicode = 006D; 441 | }, 442 | { 443 | glyphname = p; 444 | layers = ( 445 | { 446 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 447 | name = Regular; 448 | paths = ( 449 | { 450 | closed = 1; 451 | nodes = ( 452 | "1383 -64 LINE", 453 | "1127 -64 LINE", 454 | "1127 1216 LINE", 455 | "1383 1216 LINE" 456 | ); 457 | }, 458 | { 459 | closed = 1; 460 | nodes = ( 461 | "871 -64 LINE", 462 | "615 -64 LINE", 463 | "615 1216 LINE", 464 | "871 1216 LINE" 465 | ); 466 | } 467 | ); 468 | width = 2048; 469 | } 470 | ); 471 | unicode = 0070; 472 | }, 473 | { 474 | glyphname = d; 475 | lastChange = "2014-11-04 20:23:20 +0100"; 476 | layers = ( 477 | { 478 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 479 | name = Regular; 480 | paths = ( 481 | { 482 | closed = 1; 483 | nodes = ( 484 | "2 403 OFFCURVE", 485 | "105 224 OFFCURVE", 486 | "273 128 CURVE", 487 | "357 80 OFFCURVE", 488 | "449 56 OFFCURVE", 489 | "548 56 CURVE", 490 | "649 56 OFFCURVE", 491 | "740 80 OFFCURVE", 492 | "821 128 CURVE", 493 | "989 224 OFFCURVE", 494 | "1094 405 OFFCURVE", 495 | "1094 602 CURVE", 496 | "1094 799 OFFCURVE", 497 | "989 977 OFFCURVE", 498 | "822 1075 CURVE", 499 | "738 1124 OFFCURVE", 500 | "647 1148 OFFCURVE", 501 | "548 1148 CURVE", 502 | "352 1148 OFFCURVE", 503 | "171 1042 OFFCURVE", 504 | "75 875 CURVE", 505 | "26 792 OFFCURVE", 506 | "2 701 OFFCURVE", 507 | "2 602 CURVE" 508 | ); 509 | }, 510 | { 511 | closed = 1; 512 | nodes = ( 513 | "275 600 LINE SMOOTH", 514 | "479 600 LINE SMOOTH", 515 | "479 875 LINE SMOOTH", 516 | "616 875 LINE SMOOTH", 517 | "616 600 LINE SMOOTH", 518 | "820 600 LINE SMOOTH", 519 | "548 329 LINE SMOOTH" 520 | ); 521 | } 522 | ); 523 | width = 1092; 524 | } 525 | ); 526 | unicode = 0064; 527 | } 528 | ); 529 | disablesNiceNames = 1; 530 | instances = ( 531 | { 532 | name = regular; 533 | } 534 | ); 535 | unitsPerEm = 2048; 536 | versionMajor = 1; 537 | versionMinor = 0; 538 | } 539 | -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/mbaudio_font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/mbaudio_font.eot -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/mbaudio_font.svg: -------------------------------------------------------------------------------- 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 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/mbaudio_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/mbaudio_font.ttf -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/mbaudio_font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/css/font/mbAudioFont/mbaudio_font.woff -------------------------------------------------------------------------------- /dist/css/font/mbAudioFont/stylesheet.css: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: stylesheet.css 5 | last modified: 10/25/18 8:01 PM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on July 11, 2010 */ 23 | 24 | 25 | 26 | @font-face { 27 | font-family: 'mb_audio_fontRegular'; 28 | src: url("'mb_audio_font.eot'"); 29 | src: local('☺'), url("'mb_audio_font.woff'") format('woff'), url("'mb_audio_font.ttf'") format('truetype'), url('mb_audio_font-webfont_svg#webfontywr4YLri') format('svg'); 30 | font-weight: normal; 31 | font-style: normal; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /dist/css/jQuery.mb.miniAudioPlayer.min.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8";.mbMiniPlayer .map_controls,.mbMiniPlayer .playerTable span.map_volumeLevel{overflow:hidden;white-space:nowrap}@font-face{font-family:mb_audio_fontRegular;src:url(font/mbAudioFont/mbaudio_font.eot);src:local('?'),url(font/mbAudioFont/mbaudio_font.woff)format('woff'),url(font/mbAudioFont/mbaudio_font.ttf)format('truetype'),url(font/mbAudioFont/mbaudio_font.svg#webfontywr4YLri)format('svg');font-weight:400;font-style:normal}@font-face{font-family:DroidSansMonoRegular;src:url(font/DroidSansMono/DroidSansMono.eot);src:local('?'),url(font/DroidSansMono/DroidSansMono.woff)format('woff'),url(font/DroidSansMono/DroidSansMono.ttf)format('truetype'),url(font/DroidSansMono/DroidSansMono.svg#webfontGzFJ3WpO)format('svg');font-weight:400;font-style:normal}.map_params{display:none!important}a.audio{display:none}.mbMiniPlayer:focus{outline:0}.mbMiniPlayer *{box-sizing:content-box}.jp-progress,.mbMiniPlayer *{-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.mbMiniPlayer{vertical-align:baseline!important}.mbMiniPlayer span{font-family:mb_audio_fontRegular!important;font-size:20px;line-height:20px!important}.mbMiniPlayer .playerTable,.mbMiniPlayer .playerTable>div{vertical-align:middle;margin:0!important;padding:0!important;line-height:0!important}.mbMiniPlayer .playerTable{border-radius:5px!important;border:1px solid #fff!important;color:#777;background:#fff;width:auto!important;display:inline-block;overflow:hidden}.mbMiniPlayer:focus .playerTable{box-shadow:0 0 5px rgba(93,146,192,.8)!important}.mbMiniPlayer.shadow .playerTable{box-shadow:0 0 3px rgba(0,0,0,.4)}.mbMiniPlayer .playerTable>div{border:none!important;display:table-cell}.jp-progress{position:relative;background-color:#fff;height:8px;margin:0 2px 2px;top:-2px;box-sizing:content-box;cursor:pointer}.jp-load-bar{background-color:#e9e6e6;box-sizing:content-box}.jp-load-bar,.jp-play-bar{height:6px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.jp-play-bar{background-color:#000;box-sizing:content-box}.mbMiniPlayer div.map_controlsBar{background-color:#ccc;background-image:-ms-linear-gradient(bottom,#FFF 0,#FFF 60%,#DBDBDB 100%);background-image:-moz-linear-gradient(bottom,#FFF 0,#FFF 60%,#DBDBDB 100%);background-image:-o-linear-gradient(bottom,#FFF 0,#FFF 60%,#DBDBDB 100%);background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#FFF),color-stop(.6,#FFF),color-stop(1,#DBDBDB));background-image:-webkit-linear-gradient(bottom,#FFF 0,#FFF 60%,#DBDBDB 100%);background-image:linear-gradient(to top,#FFF 0,#FFF 60%,#DBDBDB 100%);margin:0;padding:0;cursor:default!important;box-shadow:inset 1px 1px 2px #999}.mbMiniPlayer .map_controls{position:relative;margin:1px;display:none;width:1px;height:100%}.mbMiniPlayer .playerTable span{margin:0!important;display:inline-block!important;padding:3px!important;height:20px!important;color:#fff;text-align:center!important;text-transform:none!important;vertical-align:middle}.mbMiniPlayer.gradientOverlay .playerTable span{background-image:linear-gradient(180deg,rgba(255,255,255,.3) 0,transparent 100%)!important}.mbMiniPlayer .playerTable span.map_title *{box-sizing:border-box}.mbMiniPlayer .playerTable span.map_title{position:relative;color:#333;font:10px/12px DroidSansMonoRegular,sans-serif!important;text-shadow:none!important;letter-spacing:0!important;width:100%!important;height:17px!important;top:-2px!important;background:0 0!important;text-align:left!important;cursor:default!important;text-overflow:ellipsis;overflow:hidden;box-sizing:border-box}.mbMiniPlayer .map_info{display:none;background:#303030;color:#D1D1D1;padding:1px 4px;position:absolute;z-index:10}.mbMiniPlayer .playerTable span.map_rew{cursor:pointer!important}.mbMiniPlayer .playerTable span.map_volumeLevel a{position:relative!important;display:inline-block!important;margin:0;border-right:1px solid rgba(0,0,0,.4);width:2px;padding:0;background-color:#fff;height:0;vertical-align:middle!important;opacity:.1;cursor:pointer!important}.mbMiniPlayer .playerTable span.map_volumeLevel a:hover{opacity:1!important}.mbMiniPlayer .playerTable span.map_time{width:1px;font:11px/20px DroidSansMonoRegular,sans-serif!important;overflow:hidden;white-space:nowrap;cursor:default!important;text-shadow:1px -1px 1px rgba(0,0,0,.6)!important}.mbMiniPlayer .playerTable span.map_play{border-radius:0 4px 4px 0!important;cursor:pointer!important}.mbMiniPlayer[isplaying=true] .playerTable span.map_play{-webkit-animation:playing .7s infinite alternate;animation:playing .7s infinite alternate}@keyframes playing{from{opacity:1}to{opacity:.5}}@-webkit-keyframes playing{from{opacity:1}to{opacity:.5}}@-moz-keyframes playing{from{opacity:1}to{opacity:.5}}.mbMiniPlayer .playerTable span.map_volume{border-radius:4px 0 0 4px!important;cursor:pointer!important;padding-left:6px!important;padding-right:0!important}.mbMiniPlayer .copy{font:10px/12px DroidSansMonoRegular,sans-serif!important;color:#e0e0e0;padding-left:10px;display:none}.mbMiniPlayer a.map_download,.mbMiniPlayer span.map_download{vertical-align:middle!important;display:inline-block!important;margin:0!important;padding:0 5px!important;font-family:mb_audio_fontRegular!important;font-size:50px!important;line-height:22px!important;color:rgba(0,0,0,.2)}.mbMiniPlayer span.map_download{transition:color 1s;-moz-transition:color 1s;-webkit-transition:color 1s}.mbMiniPlayer a.map_download{text-decoration:none;transition:color 1s;-moz-transition:color 1s;-webkit-transition:color 1s;-o-transition:color 1s}.mbMiniPlayer.black .playerTable span{background-color:#333}.mbMiniPlayer.black .playerTable span.map_play{border-left:1px solid #000}.mbMiniPlayer.black .playerTable span.map_volume{border-right:1px solid #333}.mbMiniPlayer.black .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.black .map_download:hover{color:#000}.mbMiniPlayer.black .jp-load-bar{background-color:rgba(0,0,0,.1)}.mbMiniPlayer.black .jp-play-bar{background-color:#000}.mbMiniPlayer.gray .playerTable span{background-color:#ccc}.mbMiniPlayer.gray .playerTable span.map_play{border-left:1px solid #9f9f9f}.mbMiniPlayer.gray .playerTable span.map_volume{border-right:1px solid #bdbcbc}.mbMiniPlayer.gray .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.gray .map_download:hover{color:#666}.mbMiniPlayer.gray .jp-load-bar{background-color:rgba(102,102,102,.2)}.mbMiniPlayer.gray .jp-play-bar{background-color:#9f9f9f}.mbMiniPlayer.blue .playerTable span{background-color:#09f}.mbMiniPlayer.blue .playerTable span.map_play{border-left:1px solid #034383}.mbMiniPlayer.blue .playerTable span.map_volume{border-right:1px solid #18a2fe}.mbMiniPlayer.blue .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.blue .map_download:hover{color:#09f}.mbMiniPlayer.blue .jp-load-bar{background-color:rgba(0,153,255,.1)}.mbMiniPlayer.blue .jp-play-bar{background-color:#09f}.mbMiniPlayer.orange .playerTable span{background-color:#f90}.mbMiniPlayer.orange .playerTable span.map_play{border-left:1px solid #8c5002}.mbMiniPlayer.orange .playerTable span.map_volume{border-right:1px solid #fea827}.mbMiniPlayer.orange .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.orange .map_download:hover{color:#f90}.mbMiniPlayer.orange .jp-load-bar{background-color:rgba(255,153,0,.2)}.mbMiniPlayer.orange .jp-play-bar{background-color:#f90}.mbMiniPlayer.red .playerTable span{background-color:#900}.mbMiniPlayer.red .playerTable span.map_play{border-left:1px solid #5f0000}.mbMiniPlayer.red .playerTable span.map_volume{border-right:1px solid #900}.mbMiniPlayer.red .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.red .map_download:hover{color:#900!important}.mbMiniPlayer.red .jp-load-bar{background-color:rgba(153,0,0,.21)}.mbMiniPlayer.red .jp-play-bar{background-color:#900}.mbMiniPlayer.green .playerTable span{background-color:#390}.mbMiniPlayer.green .playerTable span.map_play{border-left:1px solid #360}.mbMiniPlayer.green .playerTable span.map_volume{border-right:1px solid #38a700}.mbMiniPlayer.green .playerTable span.map_volume.mute{color:rgba(255,255,255,.5)}.mbMiniPlayer.green .map_download:hover{color:#390!important}.mbMiniPlayer.green .jp-load-bar{background-color:rgba(51,153,0,.2)}.mbMiniPlayer.green .jp-play-bar{background-color:#390}.map_pl_container{margin:10px 0;padding-left:5px;border-left:3px dotted rgba(0,0,0,.1)}.map_pl_container .pl_items_container{max-height:300px;overflow:hidden;overflow-y:auto;width:99%}.map_pl_container .pl_item{position:relative;margin:5px 0;padding:5px;border-bottom:1px dotted #ccc;font:14px/14px DroidSansMonoRegular,sans-serif!important;display:block}.map_pl_container .pl_item:hover{color:#999}.map_pl_container .pl_item span.map_download{position:absolute;right:5px;top:2px;display:block!important;vertical-align:middle!important;margin:0!important;padding:0 2px!important;font-family:mb_audio_fontRegular!important;font-size:34px!important;line-height:22px!important;color:rgba(0,0,0,.2);transition:color 1s;-moz-transition:color 1s;-webkit-transition:color 1s;-o-transition:color 1s}.map_pl_container .pl_item span.map_download:hover{color:rgba(0,0,0,.8);transition:color .5s;-moz-transition:color .5s;-webkit-transition:color .5s;-o-transition:color .5s}.map_pl_container .pl_item.sel{color:#666;background:rgba(0,0,0,.1);border-radius:8px}.map_album_infobox{margin-bottom:10px}.map_item_title{font-weight:600}.map_item_album{font-style:italic}.map_item_artist{display:block} -------------------------------------------------------------------------------- /dist/css/spectrum.min.css: -------------------------------------------------------------------------------- 1 | .sp-container{position:absolute;top:0;left:0;display:inline-block;z-index:9999994;overflow:hidden}.sp-container.sp-flat,.sp-top{position:relative}.sp-container,.sp-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sp-top{width:100%;display:inline-block}.sp-alpha-handle,.sp-color,.sp-dragger,.sp-hue,.sp-sat,.sp-slider,.sp-top-inner,.sp-val{position:absolute}.sp-top-inner{top:0;left:0;bottom:0;right:0}.sp-color{top:0;left:0;bottom:0;right:20%}.sp-hue{top:0;right:0;bottom:0;left:84%;height:100%}.sp-clear-enabled .sp-hue{top:33px;height:77.5%}.sp-fill{padding-top:80%}.sp-sat,.sp-val{top:0;left:0;right:0;bottom:0}.sp-alpha-enabled .sp-top{margin-bottom:18px}.sp-alpha-enabled .sp-alpha{display:block}.sp-alpha-handle{top:-4px;bottom:-4px;width:6px;left:50%;cursor:pointer;border:1px solid #000;background:#fff;opacity:.8}.sp-alpha{display:none;bottom:-14px;right:0;left:0;height:8px}.sp-alpha-inner{border:1px solid #333}.sp-clear{display:none}.sp-clear.sp-clear-display{background-position:center}.sp-clear-enabled .sp-clear{display:block;position:absolute;top:0;right:0;bottom:0;left:84%;height:28px}.sp-alpha,.sp-alpha-handle,.sp-clear,.sp-container,.sp-container button,.sp-container.sp-dragging .sp-input,.sp-dragger,.sp-preview,.sp-replacer,.sp-slider{-webkit-user-select:none;-moz-user-select:-moz-none;-o-user-select:none;user-select:none}.sp-container.sp-buttons-disabled .sp-button-container,.sp-container.sp-input-disabled .sp-input-container,.sp-container.sp-palette-buttons-disabled .sp-palette-button-container,.sp-initial-disabled .sp-initial,.sp-palette-disabled .sp-palette-container,.sp-palette-only .sp-picker-container{display:none}.sp-sat{background-image:-webkit-gradient(linear,0 0,100% 0,from(#FFF),to(rgba(204,154,129,0)));background-image:-webkit-linear-gradient(left,#FFF,rgba(204,154,129,0));background-image:-moz-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:-o-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:-ms-linear-gradient(left,#fff,rgba(204,154,129,0));background-image:linear-gradient(to right,#fff,rgba(204,154,129,0));-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81')}.sp-val{background-image:-webkit-gradient(linear,0 100%,0 0,from(#000),to(rgba(204,154,129,0)));background-image:-webkit-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-moz-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-o-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:-ms-linear-gradient(bottom,#000,rgba(204,154,129,0));background-image:linear-gradient(to top,#000,rgba(204,154,129,0));-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000')}.sp-hue{background:-moz-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-ms-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-o-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-gradient(linear,left top,left bottom,from(red),color-stop(.17,#ff0),color-stop(.33,#0f0),color-stop(.5,#0ff),color-stop(.67,#00f),color-stop(.83,#f0f),to(red));background:-webkit-linear-gradient(top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:linear-gradient(to bottom,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.sp-1{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00')}.sp-2{height:16%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00')}.sp-3{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff')}.sp-4{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff')}.sp-5{height:16%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff')}.sp-6{height:17%;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000')}.sp-hidden{display:none!important}.sp-cf:after,.sp-cf:before{content:"";display:table}.sp-cf:after{clear:both}@media (max-device-width:480px){.sp-color{right:40%}.sp-hue{left:63%}.sp-fill{padding-top:60%}}.sp-dragger{border-radius:5px;height:5px;width:5px;border:1px solid #fff;background:#000;cursor:pointer;top:0;left:0}.sp-slider{top:0;cursor:pointer;height:3px;left:-1px;right:-1px;border:1px solid #000;background:#fff;opacity:.8}.sp-container{border-radius:0;background-color:#ECECEC;border:1px solid #f0c49B;padding:0}.sp-clear,.sp-color,.sp-container,.sp-container button,.sp-container input,.sp-hue{font:400 12px "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.sp-top{margin-bottom:3px}.sp-clear,.sp-color,.sp-hue{border:1px solid #666}.sp-input-container{float:right;width:100px;margin-bottom:4px}.sp-initial-disabled .sp-input-container,.sp-input{width:100%}.sp-input{font-size:12px!important;border:1px inset;padding:4px 5px;margin:0;background:0 0;border-radius:3px;color:#222}.sp-input:focus{border:1px solid orange}.sp-input.sp-validation-error{border:1px solid red;background:#fdd}.sp-palette-container,.sp-picker-container{float:left;position:relative;padding:10px;padding-bottom:300px;margin-bottom:-290px}.sp-picker-container{width:172px;border-left:solid 1px #fff}.sp-palette-container{border-right:solid 1px #ccc}.sp-palette-only .sp-palette-container{border:0}.sp-palette .sp-thumb-el{display:block;position:relative;float:left;cursor:pointer}.sp-palette .sp-thumb-el.sp-thumb-active,.sp-palette .sp-thumb-el:hover{border-color:orange}.sp-thumb-el{position:relative}.sp-initial{float:left;border:1px solid #333}.sp-initial span{width:30px;height:25px;border:none;display:block;float:left;margin:0}.sp-initial .sp-clear-display{background-position:center}.sp-button-container,.sp-palette-button-container{float:right}.sp-replacer{margin:0;overflow:hidden;cursor:pointer;padding:4px;display:inline-block;border:1px solid #91765d;background:#eee;color:#333;vertical-align:middle}.sp-replacer.sp-active,.sp-replacer:hover{border-color:#F0C49B;color:#111}.sp-replacer.sp-disabled{cursor:default;border-color:silver;color:silver}.sp-dd{padding:2px 0;height:16px;line-height:16px;float:left;font-size:10px}.sp-preview{width:25px;height:20px;border:1px solid #222;margin-right:5px;float:left;z-index:0}.sp-palette{max-width:220px}.sp-palette .sp-thumb-el{width:16px;height:16px;margin:2px 1px;border:1px solid #d0d0d0}.sp-container{padding-bottom:0}.sp-container button{background-color:#eee;background-image:-webkit-linear-gradient(top,#eee,#ccc);background-image:-moz-linear-gradient(top,#eee,#ccc);background-image:-ms-linear-gradient(top,#eee,#ccc);background-image:-o-linear-gradient(top,#eee,#ccc);background-image:linear-gradient(to bottom,#eee,#ccc);border:1px solid #ccc;border-bottom:1px solid #bbb;border-radius:3px;color:#333;font-size:14px;line-height:1;padding:5px 4px;text-align:center;text-shadow:0 1px 0 #eee;vertical-align:middle}.sp-container button:hover{background-color:#ddd;background-image:-webkit-linear-gradient(top,#ddd,#bbb);background-image:-moz-linear-gradient(top,#ddd,#bbb);background-image:-ms-linear-gradient(top,#ddd,#bbb);background-image:-o-linear-gradient(top,#ddd,#bbb);background-image:linear-gradient(to bottom,#ddd,#bbb);border:1px solid #bbb;border-bottom:1px solid #999;cursor:pointer;text-shadow:0 1px 0 #ddd}.sp-container button:active{border:1px solid #aaa;border-bottom:1px solid #888;-webkit-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-moz-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-ms-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;-o-box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee;box-shadow:inset 0 0 5px 2px #aaa,0 1px 0 0 #eee}.sp-cancel{font-size:11px;color:#d93f3f!important;margin:0;padding:2px;margin-right:5px;vertical-align:middle;text-decoration:none}.sp-cancel:hover{color:#d93f3f!important;text-decoration:underline}.sp-palette span.sp-thumb-active,.sp-palette span:hover{border-color:#000}.sp-alpha,.sp-preview,.sp-thumb-el{position:relative;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.sp-alpha-inner,.sp-preview-inner,.sp-thumb-inner{display:block;position:absolute;top:0;left:0;bottom:0;right:0}.sp-palette .sp-thumb-inner{background-position:50% 50%;background-repeat:no-repeat}.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=)}.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=)}.sp-clear-display{background-repeat:no-repeat;background-position:center;background-image:url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==)} -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | jquery.mb.miniAudioPlayer 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 106 | 107 | 128 | 129 | 130 | 131 |
132 |
133 |
134 |
135 |
136 |

mb.miniAudioPlayer.demo

137 |
138 | This is a GUI implementation of Happyworm jPlayer plugin, an HTML5 audio engine, developed on jQuery framework, that let you listen mp3 and ogg file over the html5 audio tag where supported or using an invisible flash player where not supported. 139 | For more informations about html5 browsers' support go to jPlayer documentation site. 140 |
141 |
142 |

Customize the player skin

143 |
144 | Pietro Bicocchi - Allegro 2013 145 | 146 | 147 |
148 | param -> all features - loop = true 149 |
150 | Erik Satie - La Belle Excentrique (mp3) 151 | param -> showTime:false 152 |
153 | unreal_dm - Blue Circles (mp3) 154 |
unreal_dm / CC BY 2.5
155 | param -> showRew:false 156 |
157 | unreal_dm - Oh Dear Mr Williams - Tango ? (mp3) 158 |
unreal_dm / CC BY 2.5
159 | param -> showRew:false, showTime:false 160 |
161 | urmymuse - colourbox (mp3) 162 |
urmymuse / CC BY 2.5
163 |
164 |
change track: 165 |
166 | 167 | 168 |
169 |
170 |
171 | Cro Magnon Man 172 | param -> uses m4a audio 173 |
174 | Jazz radio stream 175 | This example get the stream of Radionomy Jazz channel 176 |
177 | This is a gray player: copperhead - Chillin with Jeris (mp3) 178 | and it is inline 179 |
copperhead / CC BY-NC 3.0
180 |
181 |
182 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer plug-in realized by © Happyworm LTD. (many thanks to Mark Boas) 183 |
184 | 185 | 186 | 187 | -------------------------------------------------------------------------------- /dist/php/map_download.php: -------------------------------------------------------------------------------- 1 | Something goes wrong, you don\'t have permission to use this page, sorry.'); 68 | 69 | /*unset($_SESSION['maphost']); 70 | setcookie('maphost', 'false', time() - 3600, '/');*/ 71 | 72 | //die("protocol= ". $protocol . " ---- web_address= ". $web_address . " ---- web_root= " . $web_root ." ----- file url= " . $file_url ." ----- file path= " . $file_path . " ---- file name= " . $file_name . " ---- maphost= " . $_SESSION['maphost']); 73 | 74 | function getFileSize($url) 75 | { 76 | if (substr($url, 0, 4) == 'http') { 77 | $x = array_change_key_case(get_headers($url, 1), CASE_LOWER); 78 | if (strcasecmp($x[0], 'HTTP/1.1 200 OK') != 0) { 79 | $x = $x['content-length'][1]; 80 | } else { 81 | $x = $x['content-length']; 82 | } 83 | } else { 84 | $x = @filesize($url); 85 | } 86 | return $x; 87 | } 88 | 89 | $fileSize = getFileSize($file_url); 90 | 91 | function fileExists($path) 92 | { 93 | return (@fopen($path,"r")==true); 94 | } 95 | 96 | if (!file_exists($file_path) || !fileExists($file_path)) 97 | die("
The file " . $file_path . " doesn't exist; check the URL"); 98 | 99 | //This will set the Content-Type to the appropriate setting for the file 100 | switch ($file_extension) { 101 | case 'mp3': 102 | $content_type = 'audio/mpeg'; 103 | break; 104 | case 'mp4a': 105 | $content_type = 'audio/mp4'; 106 | break; 107 | case 'm4a': 108 | $content_type = 'audio/m4a'; 109 | break; 110 | case 'wav': 111 | $content_type = 'audio/x-wav'; 112 | break; 113 | case 'ogg': 114 | $content_type = 'audio/ogg'; 115 | break; 116 | default: 117 | die ('You can\'t access ' . $file_extension . ' files!'); 118 | } 119 | 120 | /** 121 | * start stream the file 122 | */ 123 | header('Pragma: public'); 124 | header('Expires: 0'); 125 | header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 126 | header('Cache-Control: private'); 127 | header('Content-Type: ' . $content_type); 128 | header("Content-Description: File Transfer"); 129 | header("Content-Transfer-Encoding: Binary"); 130 | header("Content-disposition: attachment; filename=\"" . $filename . "\""); 131 | header('Content-Length: ' . $fileSize); 132 | header('Connection: close'); 133 | 134 | if ($fp = @fopen($file_path, 'rb')) { 135 | //die("fopen"); 136 | sleep(1); 137 | ignore_user_abort(); 138 | set_time_limit(0); 139 | while (!feof($fp)) { 140 | echo(@fread($fp, 1024 * 8)); 141 | ob_flush(); 142 | flush(); 143 | } 144 | fclose($fp); 145 | 146 | } else if (function_exists('curl_version')) { 147 | //die("curl"); 148 | $ch = curl_init(); 149 | curl_setopt($ch, CURLOPT_URL, $file_url); 150 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 151 | $contents = curl_exec($ch); 152 | // display file 153 | echo $contents; 154 | curl_close($ch); 155 | 156 | } else { 157 | //die("readfile"); 158 | // ob_end_flush(); 159 | ob_clean(); 160 | flush(); 161 | @readfile($file_path); 162 | } 163 | 164 | clearstatcache(); 165 | 166 | exit; 167 | -------------------------------------------------------------------------------- /dist/swf/jquery.jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/dist/swf/jquery.jplayer.swf -------------------------------------------------------------------------------- /dist/test.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | 24 | 25 | 26 | jquery.mb.miniAudioPlayer 27 | 28 | 29 | 30 | 31 | 32 | 33 | 38 | 39 | 40 | 41 |
42 |
43 |
44 |
45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 |
1.mp3
2.mp3
3.mp3
4.mp3
5.mp3
53 |
54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /examples/demo.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | jquery.mb.miniAudioPlayer 28 | 29 | 30 | 31 | 32 | 33 | 34 | 106 | 107 | 132 | 133 | 134 | 135 |
136 |
137 |
138 |
139 |
140 |

mb.miniAudioPlayer.demo

141 |
142 | This is a GUI implementation of Happyworm jPlayer plugin, an HTML5 audio engine, developed on jQuery framework, that let you listen mp3 and ogg file over the html5 audio tag where supported or using an invisible flash player where not supported. 143 | For more informations about html5 browsers' support go to jPlayer documentation site. 144 |
145 |
146 |

Customize the player skin

147 |
148 | Pietro Bicocchi - Allegro 2013 149 | 150 | 151 |
152 | param -> all features - loop = true 153 |
154 | Erik Satie - La Belle Excentrique (mp3) 155 | param -> showTime:false 156 |
157 | unreal_dm - Blue Circles (mp3) 158 |
unreal_dm / CC BY 2.5
159 | param -> showRew:false 160 |
161 | unreal_dm - Oh Dear Mr Williams - Tango ? (mp3) 162 |
unreal_dm / CC BY 2.5
163 | param -> showRew:false, showTime:false 164 |
165 | urmymuse - colourbox (mp3) 166 |
urmymuse / CC BY 2.5
167 |
168 |
change track: 169 |
170 | 171 | 172 |
173 |
174 |
175 | Cro Magnon Man 176 | param -> uses m4a audio 177 |
178 | Jazz radio stream 179 | This example get the stream of Radionomy Jazz channel 180 |
181 | This is a gray player: copperhead - Chillin with Jeris (mp3) 182 | and it is inline 183 |
copperhead / CC BY-NC 3.0
184 |
185 |
186 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer plug-in realized by © Happyworm LTD. (many thanks to Mark Boas) 187 |
188 | 189 | 190 | 191 | -------------------------------------------------------------------------------- /examples/demo_auto_play_next.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | jquery.mb.miniAudioPlayer 28 | 29 | 30 | 31 | 32 | 33 | 34 | 85 | 86 | 146 | 147 | 148 | 149 |
150 | 151 |
152 |

mb.miniAudioPlayer.demo - auto play next player

153 |
154 | This is a GUI implementation of Happyworm jPlayer 155 | plugin, an HTML5 audio engine, developed on jQuery framework, that let you listen mp3 and ogg file over 156 | the html5 audio tag where supported or using an invisible flash player where not supported. 157 | For more informations about html5 browsers' support go to jPlayer documentation site. 159 |
160 |

Customize the player skin

161 |
162 | Airport Gate (Boarding) 164 |
165 | Group Talking 167 |
168 | 171 |
172 | Doorbell 174 |
175 | 178 |
179 | 180 | 181 | 182 | 183 | 184 | 185 |
186 |
187 | All the music are provided by © pacdv.com. 188 |
189 | 190 |

191 | Here is a demo of a custom behaviour applied as callback for the "end" event of each player: 192 |
193 | The first player has the "autoPlay" parameter set as true and therefor it'll start playing on page load; once 194 | one of the audio played ends the next player will start playing. 195 |
196 | If is the last player playing it starts over from the first. 197 |
198 | This behaviour can't works on iOs devices due to their security restrictions. 199 |

200 |

201 |         // this is the initializer function
202 | 
203 |         $(".audio").mb_miniPlayer({
204 |         width:240,
205 |         inLine:false,
206 |         onEnd:playNext
207 |         });
208 | 
209 |         // and this is function invoked as 'onEnd' callback
210 |         // Both the onPlay and onEnd callback functions receive the index of the player as parameter.
211 | 
212 |         function playNext(idx){
213 |             setTimeout(()=>{
214 |                 var players=$(".audio");
215 |                 document.playerIDX = idx+1 <= players.length-1 ? idx+1 : 0;
216 |                 players.eq(document.playerIDX).mb_miniPlayer_play();
217 |             }, 1000);
218 |         }
219 |     
220 | 221 |
222 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer 223 | plug-in realized by © Happyworm LTD. (many thanks to Mark 224 | Boas) 225 |
226 | 227 | 228 | -------------------------------------------------------------------------------- /licenses/GPL-LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 2001, 2011 Open Lab srl. 5 | via Venezia 18b - 50121 Firenze, Italia 6 | 7 | Everyone is permitted to copy and distribute verbatim copies 8 | of this license document, but changing it is not allowed. 9 | 10 | Preamble 11 | 12 | The licenses for most software are designed to take away your 13 | freedom to share and change it. By contrast, the GNU General Public 14 | License is intended to guarantee your freedom to share and change free 15 | software--to make sure the software is free for all its users. This 16 | General Public License applies to most of the Free Software 17 | Foundation's software and to any other program whose authors commit to 18 | using it. (Some other Free Software Foundation software is covered by 19 | the GNU Lesser General Public License instead.) You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | this service if you wish), that you receive source code or can get it 26 | if you want it, that you can change the software or use pieces of it 27 | in new free programs; and that you know you can do these things. 28 | 29 | To protect your rights, we need to make restrictions that forbid 30 | anyone to deny you these rights or to ask you to surrender the rights. 31 | These restrictions translate to certain responsibilities for you if you 32 | distribute copies of the software, or if you modify it. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must give the recipients all the rights that 36 | you have. You must make sure that they, too, receive or can get the 37 | source code. And you must show them these terms so they know their 38 | rights. 39 | 40 | We protect your rights with two steps: (1) copyright the software, and 41 | (2) offer you this license which gives you legal permission to copy, 42 | distribute and/or modify the software. 43 | 44 | Also, for each author's protection and ours, we want to make certain 45 | that everyone understands that there is no warranty for this free 46 | software. If the software is modified by someone else and passed on, we 47 | want its recipients to know that what they have is not the original, so 48 | that any problems introduced by others will not reflect on the original 49 | authors' reputations. 50 | 51 | Finally, any free program is threatened constantly by software 52 | patents. We wish to avoid the danger that redistributors of a free 53 | program will individually obtain patent licenses, in effect making the 54 | program proprietary. To prevent this, we have made it clear that any 55 | patent must be licensed for everyone's free use or not licensed at all. 56 | 57 | The precise terms and conditions for copying, distribution and 58 | modification follow. 59 | 60 | GNU GENERAL PUBLIC LICENSE 61 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 62 | 63 | 0. This License applies to any program or other work which contains 64 | a notice placed by the copyright holder saying it may be distributed 65 | under the terms of this General Public License. The "Program", below, 66 | refers to any such program or work, and a "work based on the Program" 67 | means either the Program or any derivative work under copyright law: 68 | that is to say, a work containing the Program or a portion of it, 69 | either verbatim or with modifications and/or translated into another 70 | language. (Hereinafter, translation is included without limitation in 71 | the term "modification".) Each licensee is addressed as "you". 72 | 73 | Activities other than copying, distribution and modification are not 74 | covered by this License; they are outside its scope. The act of 75 | running the Program is not restricted, and the output from the Program 76 | is covered only if its contents constitute a work based on the 77 | Program (independent of having been made by running the Program). 78 | Whether that is true depends on what the Program does. 79 | 80 | 1. You may copy and distribute verbatim copies of the Program's 81 | source code as you receive it, in any medium, provided that you 82 | conspicuously and appropriately publish on each copy an appropriate 83 | copyright notice and disclaimer of warranty; keep intact all the 84 | notices that refer to this License and to the absence of any warranty; 85 | and give any other recipients of the Program a copy of this License 86 | along with the Program. 87 | 88 | You may charge a fee for the physical act of transferring a copy, and 89 | you may at your option offer warranty protection in exchange for a fee. 90 | 91 | 2. You may modify your copy or copies of the Program or any portion 92 | of it, thus forming a work based on the Program, and copy and 93 | distribute such modifications or work under the terms of Section 1 94 | above, provided that you also meet all of these conditions: 95 | 96 | a) You must cause the modified files to carry prominent notices 97 | stating that you changed the files and the date of any change. 98 | 99 | b) You must cause any work that you distribute or publish, that in 100 | whole or in part contains or is derived from the Program or any 101 | part thereof, to be licensed as a whole at no charge to all third 102 | parties under the terms of this License. 103 | 104 | c) If the modified program normally reads commands interactively 105 | when run, you must cause it, when started running for such 106 | interactive use in the most ordinary way, to print or display an 107 | announcement including an appropriate copyright notice and a 108 | notice that there is no warranty (or else, saying that you provide 109 | a warranty) and that users may redistribute the program under 110 | these conditions, and telling the user how to view a copy of this 111 | License. (Exception: if the Program itself is interactive but 112 | does not normally print such an announcement, your work based on 113 | the Program is not required to print an announcement.) 114 | 115 | These requirements apply to the modified work as a whole. If 116 | identifiable sections of that work are not derived from the Program, 117 | and can be reasonably considered independent and separate works in 118 | themselves, then this License, and its terms, do not apply to those 119 | sections when you distribute them as separate works. But when you 120 | distribute the same sections as part of a whole which is a work based 121 | on the Program, the distribution of the whole must be on the terms of 122 | this License, whose permissions for other licensees extend to the 123 | entire whole, and thus to each and every part regardless of who wrote it. 124 | 125 | Thus, it is not the intent of this section to claim rights or contest 126 | your rights to work written entirely by you; rather, the intent is to 127 | exercise the right to control the distribution of derivative or 128 | collective works based on the Program. 129 | 130 | In addition, mere aggregation of another work not based on the Program 131 | with the Program (or with a work based on the Program) on a volume of 132 | a storage or distribution medium does not bring the other work under 133 | the scope of this License. 134 | 135 | 3. You may copy and distribute the Program (or a work based on it, 136 | under Section 2) in object code or executable form under the terms of 137 | Sections 1 and 2 above provided that you also do one of the following: 138 | 139 | a) Accompany it with the complete corresponding machine-readable 140 | source code, which must be distributed under the terms of Sections 141 | 1 and 2 above on a medium customarily used for software interchange; or, 142 | 143 | b) Accompany it with a written offer, valid for at least three 144 | years, to give any third party, for a charge no more than your 145 | cost of physically performing source distribution, a complete 146 | machine-readable copy of the corresponding source code, to be 147 | distributed under the terms of Sections 1 and 2 above on a medium 148 | customarily used for software interchange; or, 149 | 150 | c) Accompany it with the information you received as to the offer 151 | to distribute corresponding source code. (This alternative is 152 | allowed only for noncommercial distribution and only if you 153 | received the program in object code or executable form with such 154 | an offer, in accord with Subsection b above.) 155 | 156 | The source code for a work means the preferred form of the work for 157 | making modifications to it. For an executable work, complete source 158 | code means all the source code for all modules it contains, plus any 159 | associated interface definition files, plus the scripts used to 160 | control compilation and installation of the executable. However, as a 161 | special exception, the source code distributed need not include 162 | anything that is normally distributed (in either source or binary 163 | form) with the major components (compiler, kernel, and so on) of the 164 | operating system on which the executable runs, unless that component 165 | itself accompanies the executable. 166 | 167 | If distribution of executable or object code is made by offering 168 | access to copy from a designated place, then offering equivalent 169 | access to copy the source code from the same place counts as 170 | distribution of the source code, even though third parties are not 171 | compelled to copy the source along with the object code. 172 | 173 | 4. You may not copy, modify, sublicense, or distribute the Program 174 | except as expressly provided under this License. Any attempt 175 | otherwise to copy, modify, sublicense or distribute the Program is 176 | void, and will automatically terminate your rights under this License. 177 | However, parties who have received copies, or rights, from you under 178 | this License will not have their licenses terminated so long as such 179 | parties remain in full compliance. 180 | 181 | 5. You are not required to accept this License, since you have not 182 | signed it. However, nothing else grants you permission to modify or 183 | distribute the Program or its derivative works. These actions are 184 | prohibited by law if you do not accept this License. Therefore, by 185 | modifying or distributing the Program (or any work based on the 186 | Program), you indicate your acceptance of this License to do so, and 187 | all its terms and conditions for copying, distributing or modifying 188 | the Program or works based on it. 189 | 190 | 6. Each time you redistribute the Program (or any work based on the 191 | Program), the recipient automatically receives a license from the 192 | original licensor to copy, distribute or modify the Program subject to 193 | these terms and conditions. You may not impose any further 194 | restrictions on the recipients' exercise of the rights granted herein. 195 | You are not responsible for enforcing compliance by third parties to 196 | this License. 197 | 198 | 7. If, as a consequence of a court judgment or allegation of patent 199 | infringement or for any other reason (not limited to patent issues), 200 | conditions are imposed on you (whether by court order, agreement or 201 | otherwise) that contradict the conditions of this License, they do not 202 | excuse you from the conditions of this License. If you cannot 203 | distribute so as to satisfy simultaneously your obligations under this 204 | License and any other pertinent obligations, then as a consequence you 205 | may not distribute the Program at all. For example, if a patent 206 | license would not permit royalty-free redistribution of the Program by 207 | all those who receive copies directly or indirectly through you, then 208 | the only way you could satisfy both it and this License would be to 209 | refrain entirely from distribution of the Program. 210 | 211 | If any portion of this section is held invalid or unenforceable under 212 | any particular circumstance, the balance of the section is intended to 213 | apply and the section as a whole is intended to apply in other 214 | circumstances. 215 | 216 | It is not the purpose of this section to induce you to infringe any 217 | patents or other property right claims or to contest validity of any 218 | such claims; this section has the sole purpose of protecting the 219 | integrity of the free software distribution system, which is 220 | implemented by public license practices. Many people have made 221 | generous contributions to the wide range of software distributed 222 | through that system in reliance on consistent application of that 223 | system; it is up to the author/donor to decide if he or she is willing 224 | to distribute software through any other system and a licensee cannot 225 | impose that choice. 226 | 227 | This section is intended to make thoroughly clear what is believed to 228 | be a consequence of the rest of this License. 229 | 230 | 8. If the distribution and/or use of the Program is restricted in 231 | certain countries either by patents or by copyrighted interfaces, the 232 | original copyright holder who places the Program under this License 233 | may add an explicit geographical distribution limitation excluding 234 | those countries, so that distribution is permitted only in or among 235 | countries not thus excluded. In such case, this License incorporates 236 | the limitation as if written in the body of this License. 237 | 238 | 9. The Free Software Foundation may publish revised and/or new versions 239 | of the General Public License from time to time. Such new versions will 240 | be similar in spirit to the present version, but may differ in detail to 241 | address new problems or concerns. 242 | 243 | Each version is given a distinguishing version number. If the Program 244 | specifies a version number of this License which applies to it and "any 245 | later version", you have the option of following the terms and conditions 246 | either of that version or of any later version published by the Free 247 | Software Foundation. If the Program does not specify a version number of 248 | this License, you may choose any version ever published by the Free Software 249 | Foundation. 250 | 251 | 10. If you wish to incorporate parts of the Program into other free 252 | programs whose distribution conditions are different, write to the author 253 | to ask for permission. For software which is copyrighted by the Free 254 | Software Foundation, write to the Free Software Foundation; we sometimes 255 | make exceptions for this. Our decision will be guided by the two goals 256 | of preserving the free status of all derivatives of our free software and 257 | of promoting the sharing and reuse of software generally. 258 | 259 | NO WARRANTY 260 | 261 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 262 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 263 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 264 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 265 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 266 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 267 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 268 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 269 | REPAIR OR CORRECTION. 270 | 271 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 272 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 273 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 274 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 275 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 276 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 277 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 278 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 279 | POSSIBILITY OF SUCH DAMAGES. 280 | -------------------------------------------------------------------------------- /licenses/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2001, 2011 Matteo Bicocchi, Open Lab srl 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.mb.miniaudioplayer", 3 | "title": "jquery.mb.miniAudioPlayer", 4 | "description": "This plugin let you add a minimal full featured player that takes advantage of the new HTML5 AUDIO tag with a flash fallback for browsers that don't support it. It is built on the jPlayer library", 5 | "keywords": [ 6 | "jquery-plugin", 7 | "audio", 8 | "HTML5", 9 | "player", 10 | "jPlayer" 11 | ], 12 | "version": "1.8.7", 13 | "author": "Pupunzi (Matteo Bicocchi)", 14 | "maintainers": [ 15 | "Pupunzi (Matteo Bicocchi)" 16 | ], 17 | "licenses": [ 18 | { 19 | "type": "MIT", 20 | "url": "https://github.com/pupunzi/jquery.mb.miniAudioPlayer/blob/master/licenses/GPL-LICENSE.txt" 21 | }, 22 | { 23 | "type": "GPL", 24 | "url": "https://github.com/pupunzi/jquery.mb.miniAudioPlayer/blob/master/licenses/GPL-LICENSE.txt" 25 | } 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/pupunzi/jquery.mb.miniAudioPlayer/issues" 29 | }, 30 | "homepage": "http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-miniaudioplayer/", 31 | "demo": "http://pupunzi.com/#mb.components/mb.miniAudioPlayer/miniAudioPlayer.html", 32 | "docs": "https://github.com/pupunzi/jquery.mb.miniAudioPlayer/wiki", 33 | "download": "http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-miniaudioplayer/", 34 | "dependencies": { 35 | "jquery": ">=1.8" 36 | }, 37 | "main": "src/jquery.mb.miniPlayer.src.js", 38 | "scripts": { 39 | "test": "echo \"Error: no test specified\" && exit 1" 40 | }, 41 | "repository": { 42 | "type": "git", 43 | "url": "https://github.com/pupunzi/jquery.mb.miniAudioPlayer" 44 | }, 45 | "license": "MIT", 46 | "devDependencies": { 47 | "grunt": "^0.4.5", 48 | "grunt-build-number": "^1.0.0", 49 | "grunt-bump": "^0.3.1", 50 | "grunt-contrib-concat": "^0.5.1", 51 | "grunt-contrib-copy": "^0.8.0", 52 | "grunt-contrib-cssmin": "^0.12.3", 53 | "grunt-contrib-uglify": "^0.9.1", 54 | "grunt-contrib-watch": "^0.6.1", 55 | "grunt-include-replace": "^3.0.0" 56 | }, 57 | "buildnum": "49926" 58 | } -------------------------------------------------------------------------------- /resources/id3/binaryajax.js: -------------------------------------------------------------------------------- 1 | 2 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 3 | jquery.mb.components 4 | 5 | file: binaryajax.js 6 | last modified: 10/25/18 8:01 PM 7 | Version: {{ version }} 8 | Build: {{ buildnum }} 9 | 10 | Open Lab s.r.l., Florence - Italy 11 | email: matteo@open-lab.com 12 | blog: http://pupunzi.open-lab.com 13 | site: http://pupunzi.com 14 | http://open-lab.com 15 | 16 | Licences: MIT, GPL 17 | http://www.opensource.org/licenses/mit-license.php 18 | http://www.gnu.org/licenses/gpl.html 19 | 20 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 21 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 22 | 23 | 24 | var BinaryFile = function(strData, iDataOffset, iDataLength) { 25 | var data = strData; 26 | var dataOffset = iDataOffset || 0; 27 | var dataLength = 0; 28 | 29 | this.getRawData = function() { 30 | return data; 31 | } 32 | 33 | if (typeof strData == "string") { 34 | dataLength = iDataLength || data.length; 35 | 36 | this.getByteAt = function(iOffset) { 37 | return data.charCodeAt(iOffset + dataOffset) & 0xFF; 38 | } 39 | } else if (typeof strData == "unknown") { 40 | dataLength = iDataLength || IEBinary_getLength(data); 41 | 42 | this.getByteAt = function(iOffset) { 43 | return IEBinary_getByteAt(data, iOffset + dataOffset); 44 | } 45 | } 46 | 47 | this.getLength = function() { 48 | return dataLength; 49 | } 50 | 51 | this.getSByteAt = function(iOffset) { 52 | var iByte = this.getByteAt(iOffset); 53 | if (iByte > 127) 54 | return iByte - 256; 55 | else 56 | return iByte; 57 | } 58 | 59 | this.getShortAt = function(iOffset, bBigEndian) { 60 | var iShort = bBigEndian ? 61 | (this.getByteAt(iOffset) << 8) + this.getByteAt(iOffset + 1) 62 | : (this.getByteAt(iOffset + 1) << 8) + this.getByteAt(iOffset) 63 | if (iShort < 0) iShort += 65536; 64 | return iShort; 65 | } 66 | this.getSShortAt = function(iOffset, bBigEndian) { 67 | var iUShort = this.getShortAt(iOffset, bBigEndian); 68 | if (iUShort > 32767) 69 | return iUShort - 65536; 70 | else 71 | return iUShort; 72 | } 73 | this.getLongAt = function(iOffset, bBigEndian) { 74 | var iByte1 = this.getByteAt(iOffset), 75 | iByte2 = this.getByteAt(iOffset + 1), 76 | iByte3 = this.getByteAt(iOffset + 2), 77 | iByte4 = this.getByteAt(iOffset + 3); 78 | 79 | var iLong = bBigEndian ? 80 | (((((iByte1 << 8) + iByte2) << 8) + iByte3) << 8) + iByte4 81 | : (((((iByte4 << 8) + iByte3) << 8) + iByte2) << 8) + iByte1; 82 | if (iLong < 0) iLong += 4294967296; 83 | return iLong; 84 | } 85 | this.getSLongAt = function(iOffset, bBigEndian) { 86 | var iULong = this.getLongAt(iOffset, bBigEndian); 87 | if (iULong > 2147483647) 88 | return iULong - 4294967296; 89 | else 90 | return iULong; 91 | } 92 | this.getStringAt = function(iOffset, iLength) { 93 | var aStr = []; 94 | for (var i=iOffset,j=0;i\r\n" 243 | + "Function IEBinary_getByteAt(strBinary, iOffset)\r\n" 244 | + " IEBinary_getByteAt = AscB(MidB(strBinary,iOffset+1,1))\r\n" 245 | + "End Function\r\n" 246 | + "Function IEBinary_getLength(strBinary)\r\n" 247 | + " IEBinary_getLength = LenB(strBinary)\r\n" 248 | + "End Function\r\n" 249 | + "\r\n" 250 | ); 251 | -------------------------------------------------------------------------------- /resources/id3/id3-minimized.js: -------------------------------------------------------------------------------- 1 | function y(h,g,b){var c=g||0,d=0;"string"==typeof h?(d=b||h.length,this.a=function(a){return h.charCodeAt(a+c)&255}):"unknown"==typeof h&&(d=b||IEBinary_getLength(h),this.a=function(a){return IEBinary_getByteAt(h,a+c)});this.l=function(a,f){for(var v=Array(f),b=0;ba&&(a+=65536);return a};this.i=function(a){var f=this.a(a),b=this.a(a+1),d= 2 | this.a(a+2);a=this.a(a+3);f=(((f<<8)+b<<8)+d<<8)+a;0>f&&(f+=4294967296);return f};this.o=function(a){var f=this.a(a),b=this.a(a+1);a=this.a(a+2);f=((f<<8)+b<<8)+a;0>f&&(f+=16777216);return f};this.c=function(a,f){for(var b=[],d=a,e=0;dg||224<=g?b[m]=String.fromCharCode(k):(g=(a[e+c]<<8)+a[e+d],e+=2,b[m]=String.fromCharCode(k,g))}a=new String(b.join(""));a.g=e;break;case "utf-8":l=0;e=Math.min(e||a.length,a.length);239==a[0]&&187==a[1]&&191==a[2]&&(l=3);c=[];for(d=0;lb?c[d]=String.fromCharCode(b):194<=b&&224>b?(m=a[l++],c[d]=String.fromCharCode(((b&31)<<6)+(m&63))):224<=b&&240> 4 | b?(m=a[l++],k=a[l++],c[d]=String.fromCharCode(((b&255)<<12)+((m&63)<<6)+(k&63))):240<=b&&245>b&&(m=a[l++],k=a[l++],g=a[l++],b=((b&7)<<18)+((m&63)<<12)+((k&63)<<6)+(g&63)-65536,c[d]=String.fromCharCode((b>>10)+55296,(b&1023)+56320));a=new String(c.join(""));a.g=l;break;default:e=[];c=c||a.length;for(l=0;lb&&(b=0);a>=blockTotal&&(a=blockTotal-1);return[b,a]}function h(f,g){for(;n[f[0]];)if(f[0]++,f[0]> 8 | f[1]){g&&g();return}for(;n[f[1]];)if(f[1]--,f[0]>f[1]){g&&g();return}var m=[f[0]*e,(f[1]+1)*e-1];c(a,function(a){parseInt(a.getResponseHeader("Content-Length"),10)==d&&(f[0]=0,f[1]=blockTotal-1,m[0]=0,m[1]=d-1);a={data:a.N||a.responseText,offset:m[0]};for(var b=f[0];b<=f[1];b++)n[b]=a;g&&g()},b,m,k,!!g)}var k,r=new y("",0,d),n=[];e=e||2048;f="undefined"===typeof f?0:f;blockTotal=~~((d-1)/e)+1;for(var q in r)r.hasOwnProperty(q)&&"function"===typeof r[q]&&(this[q]=r[q]);this.a=function(a){var b;h(g([a, 9 | a]));b=n[~~(a/e)];if("string"==typeof b.data)return b.data.charCodeAt(a-b.offset)&255;if("unknown"==typeof b.data)return IEBinary_getByteAt(b.data,a-b.offset)};this.f=function(a,b){h(g(a),b)}}(function(){a(h,function(a){a=parseInt(a.getResponseHeader("Content-Length"),10)||-1;g(new f(h,a))},b)})()};(function(h){h.FileAPIReader=function(g,b){return function(c,d){var a=b||new FileReader;a.onload=function(a){d(new y(a.target.result))};a.readAsBinaryString(g)}}})(this);(function(h){var g=h.p={},b={},c=[0,7];g.t=function(d){delete b[d]};g.s=function(){b={}};g.B=function(d,a,f){f=f||{};(f.dataReader||C)(d,function(g){g.f(c,function(){var c="ftypM4A"==g.c(4,7)?ID4:"ID3"==g.c(0,3)?ID3v2:ID3v1;c.m(g,function(){var e=f.tags,h=c.n(g,e),e=b[d]||{},m;for(m in h)h.hasOwnProperty(m)&&(e[m]=h[m]);b[d]=e;a&&a()})})},f.onError)};g.v=function(d){if(!b[d])return null;var a={},c;for(c in b[d])b[d].hasOwnProperty(c)&&(a[c]=b[d][c]);return a};g.A=function(d,a){return b[d]?b[d][a]: 10 | null};h.ID3=h.p;g.loadTags=g.B;g.getAllTags=g.v;g.getTag=g.A;g.clearTags=g.t;g.clearAll=g.s})(this);(function(h){var g=h.q={},b="Blues;Classic Rock;Country;Dance;Disco;Funk;Grunge;Hip-Hop;Jazz;Metal;New Age;Oldies;Other;Pop;R&B;Rap;Reggae;Rock;Techno;Industrial;Alternative;Ska;Death Metal;Pranks;Soundtrack;Euro-Techno;Ambient;Trip-Hop;Vocal;Jazz+Funk;Fusion;Trance;Classical;Instrumental;Acid;House;Game;Sound Clip;Gospel;Noise;AlternRock;Bass;Soul;Punk;Space;Meditative;Instrumental Pop;Instrumental Rock;Ethnic;Gothic;Darkwave;Techno-Industrial;Electronic;Pop-Folk;Eurodance;Dream;Southern Rock;Comedy;Cult;Gangsta;Top 40;Christian Rap;Pop/Funk;Jungle;Native American;Cabaret;New Wave;Psychadelic;Rave;Showtunes;Trailer;Lo-Fi;Tribal;Acid Punk;Acid Jazz;Polka;Retro;Musical;Rock & Roll;Hard Rock;Folk;Folk-Rock;National Folk;Swing;Fast Fusion;Bebob;Latin;Revival;Celtic;Bluegrass;Avantgarde;Gothic Rock;Progressive Rock;Psychedelic Rock;Symphonic Rock;Slow Rock;Big Band;Chorus;Easy Listening;Acoustic;Humour;Speech;Chanson;Opera;Chamber Music;Sonata;Symphony;Booty Bass;Primus;Porn Groove;Satire;Slow Jam;Club;Tango;Samba;Folklore;Ballad;Power Ballad;Rhythmic Soul;Freestyle;Duet;Punk Rock;Drum Solo;Acapella;Euro-House;Dance Hall".split(";"); 11 | g.m=function(b,d){var a=b.h();b.f([a-128-1,a],d)};g.n=function(c){var d=c.h()-128;if("TAG"==c.c(d,3)){var a=c.c(d+3,30).replace(/\0/g,""),f=c.c(d+33,30).replace(/\0/g,""),g=c.c(d+63,30).replace(/\0/g,""),l=c.c(d+93,4).replace(/\0/g,"");if(0==c.a(d+97+28))var e=c.c(d+97,28).replace(/\0/g,""),h=c.a(d+97+29);else e="",h=0;c=c.a(d+97+30);return{version:"1.1",title:a,artist:f,album:g,year:l,comment:e,track:h,genre:255>c?b[c]:""}}return{}};h.ID3v1=h.q})(this);(function(h){function g(a,b){var d=b.a(a),c=b.a(a+1),e=b.a(a+2);return b.a(a+3)&127|(e&127)<<7|(c&127)<<14|(d&127)<<21}var b=h.D={};b.b={};b.frames={BUF:"Recommended buffer size",CNT:"Play counter",COM:"Comments",CRA:"Audio encryption",CRM:"Encrypted meta frame",ETC:"Event timing codes",EQU:"Equalization",GEO:"General encapsulated object",IPL:"Involved people list",LNK:"Linked information",MCI:"Music CD Identifier",MLL:"MPEG location lookup table",PIC:"Attached picture",POP:"Popularimeter",REV:"Reverb", 12 | RVA:"Relative volume adjustment",SLT:"Synchronized lyric/text",STC:"Synced tempo codes",TAL:"Album/Movie/Show title",TBP:"BPM (Beats Per Minute)",TCM:"Composer",TCO:"Content type",TCR:"Copyright message",TDA:"Date",TDY:"Playlist delay",TEN:"Encoded by",TFT:"File type",TIM:"Time",TKE:"Initial key",TLA:"Language(s)",TLE:"Length",TMT:"Media type",TOA:"Original artist(s)/performer(s)",TOF:"Original filename",TOL:"Original Lyricist(s)/text writer(s)",TOR:"Original release year",TOT:"Original album/Movie/Show title", 13 | TP1:"Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group",TP2:"Band/Orchestra/Accompaniment",TP3:"Conductor/Performer refinement",TP4:"Interpreted, remixed, or otherwise modified by",TPA:"Part of a set",TPB:"Publisher",TRC:"ISRC (International Standard Recording Code)",TRD:"Recording dates",TRK:"Track number/Position in set",TSI:"Size",TSS:"Software/hardware and settings used for encoding",TT1:"Content group description",TT2:"Title/Songname/Content description",TT3:"Subtitle/Description refinement", 14 | TXT:"Lyricist/text writer",TXX:"User defined text information frame",TYE:"Year",UFI:"Unique file identifier",ULT:"Unsychronized lyric/text transcription",WAF:"Official audio file webpage",WAR:"Official artist/performer webpage",WAS:"Official audio source webpage",WCM:"Commercial information",WCP:"Copyright/Legal information",WPB:"Publishers official webpage",WXX:"User defined URL link frame",AENC:"Audio encryption",APIC:"Attached picture",COMM:"Comments",COMR:"Commercial frame",ENCR:"Encryption method registration", 15 | EQUA:"Equalization",ETCO:"Event timing codes",GEOB:"General encapsulated object",GRID:"Group identification registration",IPLS:"Involved people list",LINK:"Linked information",MCDI:"Music CD identifier",MLLT:"MPEG location lookup table",OWNE:"Ownership frame",PRIV:"Private frame",PCNT:"Play counter",POPM:"Popularimeter",POSS:"Position synchronisation frame",RBUF:"Recommended buffer size",RVAD:"Relative volume adjustment",RVRB:"Reverb",SYLT:"Synchronized lyric/text",SYTC:"Synchronized tempo codes", 16 | TALB:"Album/Movie/Show title",TBPM:"BPM (beats per minute)",TCOM:"Composer",TCON:"Content type",TCOP:"Copyright message",TDAT:"Date",TDLY:"Playlist delay",TENC:"Encoded by",TEXT:"Lyricist/Text writer",TFLT:"File type",TIME:"Time",TIT1:"Content group description",TIT2:"Title/songname/content description",TIT3:"Subtitle/Description refinement",TKEY:"Initial key",TLAN:"Language(s)",TLEN:"Length",TMED:"Media type",TOAL:"Original album/movie/show title",TOFN:"Original filename",TOLY:"Original lyricist(s)/text writer(s)", 17 | TOPE:"Original artist(s)/performer(s)",TORY:"Original release year",TOWN:"File owner/licensee",TPE1:"Lead performer(s)/Soloist(s)",TPE2:"Band/orchestra/accompaniment",TPE3:"Conductor/performer refinement",TPE4:"Interpreted, remixed, or otherwise modified by",TPOS:"Part of a set",TPUB:"Publisher",TRCK:"Track number/Position in set",TRDA:"Recording dates",TRSN:"Internet radio station name",TRSO:"Internet radio station owner",TSIZ:"Size",TSRC:"ISRC (international standard recording code)",TSSE:"Software/Hardware and settings used for encoding", 18 | TYER:"Year",TXXX:"User defined text information frame",UFID:"Unique file identifier",USER:"Terms of use",USLT:"Unsychronized lyric/text transcription",WCOM:"Commercial information",WCOP:"Copyright/Legal information",WOAF:"Official audio file webpage",WOAR:"Official artist/performer webpage",WOAS:"Official audio source webpage",WORS:"Official internet radio station homepage",WPAY:"Payment",WPUB:"Publishers official webpage",WXXX:"User defined URL link frame"};var c={title:["TIT2","TT2"],artist:["TPE1", 19 | "TP1"],album:["TALB","TAL"],year:["TYER","TYE"],comment:["COMM","COM"],track:["TRCK","TRK"],genre:["TCON","TCO"],picture:["APIC","PIC"],lyrics:["USLT","ULT"]},d=["title","artist","album","track"];b.m=function(a,b){a.f([0,g(6,a)],b)};b.n=function(a,f){var h=0,l=a.a(h+3);if(42.4"};var e=a.a(h+4),t=a.d(h+5,7),m=a.d(h+5,6),u=a.d(h+5,5),k=g(h+6,a),h=h+10;if(m)var r=a.i(h),h=h+(r+4);var l={version:"2."+l+"."+e,major:l,revision:e,flags:{unsynchronisation:t,extended_header:m,experimental_indicator:u}, 20 | size:k},n;if(t)n={};else{for(var k=k-10,t=a,e=f,m={},u=l.major,r=[],q=0,p;p=(e||d)[q];q++)r=r.concat(c[p]||[p]);for(e=r;he.indexOf(n)||(2=blockTotal&&(b=blockTotal-1);return[p,b]}function g(a,c){for(;n[a[0]];)if(a[0]++,a[0]>a[1]){c&&c();return}for(;n[a[1]];)if(a[1]--,a[0]>a[1]){c&&c();return}var k=[a[0]*e,(a[1]+1)*e-1];f(b,function(b){parseInt(b.getResponseHeader("Content-Length"),10)==h&&(a[0]=0,a[1]=blockTotal-1,k[0]=0,k[1]=h-1);for(var b={data:b.W||b.responseText,s:k[0]},p=a[0];p<=a[1];p++)n[p]=b;i+=k[1]-k[0]+1;c&&c()},d,k,j,!!c)}var j,i=0,l=new z("",0,h),n=[];e=e||2048;a=typeof a==="undefined"? 4 | 0:a;blockTotal=~~((h-1)/e)+1;for(var m in l)l.hasOwnProperty(m)&&typeof l[m]==="function"&&(this[m]=l[m]);this.a=function(b){var a;g(c([b,b]));a=n[~~(b/e)];if(typeof a.data=="string")return a.data.charCodeAt(b-a.s)&255;else if(typeof a.data=="unknown")return IEBinary_getByteAt(a.data,b-a.s)};this.N=function(){return i};this.f=function(b,a){g(c(b),a)}}(function(){a(g,function(a){a=parseInt(a.getResponseHeader("Content-Length"),10)||-1;i(new b(g,a))})})()} 5 | function z(g,i,d){var f=g,c=i||0,a=0;this.P=function(){return f};if(typeof g=="string")a=d||f.length,this.a=function(b){return f.charCodeAt(b+c)&255};else if(typeof g=="unknown")a=d||IEBinary_getLength(f),this.a=function(b){return IEBinary_getByteAt(f,b+c)};this.n=function(b,a){for(var h=Array(a),e=0;e127?b-256:b};this.r=function(b,a){var h=a?(this.a(b)<< 6 | 8)+this.a(b+1):(this.a(b+1)<<8)+this.a(b);h<0&&(h+=65536);return h};this.S=function(b,a){var h=this.r(b,a);return h>32767?h-65536:h};this.h=function(b,a){var h=this.a(b),e=this.a(b+1),c=this.a(b+2),d=this.a(b+3),h=a?(((h<<8)+e<<8)+c<<8)+d:(((d<<8)+c<<8)+e<<8)+h;h<0&&(h+=4294967296);return h};this.R=function(b,a){var c=this.h(b,a);return c>2147483647?c-4294967296:c};this.q=function(b){var a=this.a(b),c=this.a(b+1),b=this.a(b+2),a=((a<<8)+c<<8)+b;a<0&&(a+=16777216);return a};this.c=function(b,a){for(var c= 7 | [],e=b,d=0;e=224?a[g]=String.fromCharCode(i):(j=(b[d+f]<<8)+b[d+c],d+=2,a[g]=String.fromCharCode(i,j))}b= 8 | new String(a.join(""));b.g=d;break;case "utf-8":e=0;d=Math.min(d||b.length,b.length);b[0]==239&&b[1]==187&&b[2]==191&&(e=3);f=[];for(c=0;e=194&&a<224?(g=b[e++],f[c]=String.fromCharCode(((a&31)<<6)+(g&63))):a>=224&&a<240?(g=b[e++],i=b[e++],f[c]=String.fromCharCode(((a&255)<<12)+((g&63)<<6)+(i&63))):a>=240&&a<245&&(g=b[e++],i=b[e++],j=b[e++],a=((a&7)<<18)+((g&63)<<12)+((i&63)<<6)+(j&63)-65536,f[c]=String.fromCharCode((a>>10)+55296, 9 | (a&1023)+56320));b=new String(f.join(""));b.g=e;break;default:d=[];f=f||b.length;for(e=0;e\r\nFunction IEBinary_getByteAt(strBinary, iOffset)\r\n\tIEBinary_getByteAt = AscB(MidB(strBinary,iOffset+1,1))\r\nEnd Function\r\nFunction IEBinary_getLength(strBinary)\r\n\tIEBinary_getLength = LenB(strBinary)\r\nEnd Function\r\n<\/script>\r\n");(function(g){g.FileAPIReader=function(g){return function(d,f){var c=new FileReader;c.onload=function(a){f(new z(a.target.result))};c.readAsBinaryString(g)}}})(this);(function(g){g.k={i:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",z:function(g){for(var d="",f,c,a,b,p,h,e=0;e>2,f=(f&3)<<4|c>>4,p=(c&15)<<2|a>>6,h=a&63,isNaN(c)?p=h=64:isNaN(a)&&(h=64),d=d+Base64.i.charAt(b)+Base64.i.charAt(f)+Base64.i.charAt(p)+Base64.i.charAt(h);return d}};g.Base64=g.k;g.k.encodeBytes=g.k.z})(this);(function(g){var i=g.t={},d={},f=[0,7];i.C=function(c,a,b){b=b||{};(b.dataReader||y)(c,function(g){g.f(f,function(){var f=g.c(4,7)=="ftypM4A"?ID4:g.c(0,3)=="ID3"?ID3v2:ID3v1;f.o(g,function(){var e=b.tags,i=f.p(g,e),e=d[c]||{},k;for(k in i)i.hasOwnProperty(k)&&(e[k]=i[k]);d[c]=e;a&&a()})})})};i.A=function(c){if(!d[c])return q;var a={},b;for(b in d[c])d[c].hasOwnProperty(b)&&(a[b]=d[c][b]);return a};i.B=function(c,a){if(!d[c])return q;return d[c][a]};g.ID3=g.t;i.loadTags=i.C;i.getAllTags=i.A;i.getTag= 10 | i.B})(this);(function(g){var i=g.u={},d=["Blues","Classic Rock","Country","Dance","Disco","Funk","Grunge","Hip-Hop","Jazz","Metal","New Age","Oldies","Other","Pop","R&B","Rap","Reggae","Rock","Techno","Industrial","Alternative","Ska","Death Metal","Pranks","Soundtrack","Euro-Techno","Ambient","Trip-Hop","Vocal","Jazz+Funk","Fusion","Trance","Classical","Instrumental","Acid","House","Game","Sound Clip","Gospel","Noise","AlternRock","Bass","Soul","Punk","Space","Meditative","Instrumental Pop","Instrumental Rock", 11 | "Ethnic","Gothic","Darkwave","Techno-Industrial","Electronic","Pop-Folk","Eurodance","Dream","Southern Rock","Comedy","Cult","Gangsta","Top 40","Christian Rap","Pop/Funk","Jungle","Native American","Cabaret","New Wave","Psychadelic","Rave","Showtunes","Trailer","Lo-Fi","Tribal","Acid Punk","Acid Jazz","Polka","Retro","Musical","Rock & Roll","Hard Rock","Folk","Folk-Rock","National Folk","Swing","Fast Fusion","Bebob","Latin","Revival","Celtic","Bluegrass","Avantgarde","Gothic Rock","Progressive Rock", 12 | "Psychedelic Rock","Symphonic Rock","Slow Rock","Big Band","Chorus","Easy Listening","Acoustic","Humour","Speech","Chanson","Opera","Chamber Music","Sonata","Symphony","Booty Bass","Primus","Porn Groove","Satire","Slow Jam","Club","Tango","Samba","Folklore","Ballad","Power Ballad","Rhythmic Soul","Freestyle","Duet","Punk Rock","Drum Solo","Acapella","Euro-House","Dance Hall"];i.o=function(d,c){var a=d.j();d.f([a-128-1,a],c)};i.p=function(f){var c=f.j()-128;if(f.c(c,3)=="TAG"){var a=f.c(c+3,30).replace(/\0/g, 13 | ""),b=f.c(c+33,30).replace(/\0/g,""),g=f.c(c+63,30).replace(/\0/g,""),h=f.c(c+93,4).replace(/\0/g,"");if(f.a(c+97+28)==0)var e=f.c(c+97,28).replace(/\0/g,""),i=f.a(c+97+29);else e="",i=0;f=f.a(c+97+30);return{version:"1.1",title:a,artist:b,album:g,year:h,comment:e,track:i,genre:f<255?d[f]:""}}else return{}};g.ID3v1=g.u})(this);(function(g){function i(a,b){var c=b.a(a),d=b.a(a+1),e=b.a(a+2);return b.a(a+3)&127|(e&127)<<7|(d&127)<<14|(c&127)<<21}var d=g.G={};d.b={};d.frames={BUF:"Recommended buffer size",CNT:"Play counter",COM:"Comments",CRA:"Audio encryption",CRM:"Encrypted meta frame",ETC:"Event timing codes",EQU:"Equalization",GEO:"General encapsulated object",IPL:"Involved people list",LNK:"Linked information",MCI:"Music CD Identifier",MLL:"MPEG location lookup table",PIC:"Attached picture",POP:"Popularimeter",REV:"Reverb", 14 | RVA:"Relative volume adjustment",SLT:"Synchronized lyric/text",STC:"Synced tempo codes",TAL:"Album/Movie/Show title",TBP:"BPM (Beats Per Minute)",TCM:"Composer",TCO:"Content type",TCR:"Copyright message",TDA:"Date",TDY:"Playlist delay",TEN:"Encoded by",TFT:"File type",TIM:"Time",TKE:"Initial key",TLA:"Language(s)",TLE:"Length",TMT:"Media type",TOA:"Original artist(s)/performer(s)",TOF:"Original filename",TOL:"Original Lyricist(s)/text writer(s)",TOR:"Original release year",TOT:"Original album/Movie/Show title", 15 | TP1:"Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group",TP2:"Band/Orchestra/Accompaniment",TP3:"Conductor/Performer refinement",TP4:"Interpreted, remixed, or otherwise modified by",TPA:"Part of a set",TPB:"Publisher",TRC:"ISRC (International Standard Recording Code)",TRD:"Recording dates",TRK:"Track number/Position in set",TSI:"Size",TSS:"Software/hardware and settings used for encoding",TT1:"Content group description",TT2:"Title/Songname/Content description",TT3:"Subtitle/Description refinement", 16 | TXT:"Lyricist/text writer",TXX:"User defined text information frame",TYE:"Year",UFI:"Unique file identifier",ULT:"Unsychronized lyric/text transcription",WAF:"Official audio file webpage",WAR:"Official artist/performer webpage",WAS:"Official audio source webpage",WCM:"Commercial information",WCP:"Copyright/Legal information",WPB:"Publishers official webpage",WXX:"User defined URL link frame",AENC:"Audio encryption",APIC:"Attached picture",COMM:"Comments",COMR:"Commercial frame",ENCR:"Encryption method registration", 17 | EQUA:"Equalization",ETCO:"Event timing codes",GEOB:"General encapsulated object",GRID:"Group identification registration",IPLS:"Involved people list",LINK:"Linked information",MCDI:"Music CD identifier",MLLT:"MPEG location lookup table",OWNE:"Ownership frame",PRIV:"Private frame",PCNT:"Play counter",POPM:"Popularimeter",POSS:"Position synchronisation frame",RBUF:"Recommended buffer size",RVAD:"Relative volume adjustment",RVRB:"Reverb",SYLT:"Synchronized lyric/text",SYTC:"Synchronized tempo codes", 18 | TALB:"Album/Movie/Show title",TBPM:"BPM (beats per minute)",TCOM:"Composer",TCON:"Content type",TCOP:"Copyright message",TDAT:"Date",TDLY:"Playlist delay",TENC:"Encoded by",TEXT:"Lyricist/Text writer",TFLT:"File type",TIME:"Time",TIT1:"Content group description",TIT2:"Title/songname/content description",TIT3:"Subtitle/Description refinement",TKEY:"Initial key",TLAN:"Language(s)",TLEN:"Length",TMED:"Media type",TOAL:"Original album/movie/show title",TOFN:"Original filename",TOLY:"Original lyricist(s)/text writer(s)", 19 | TOPE:"Original artist(s)/performer(s)",TORY:"Original release year",TOWN:"File owner/licensee",TPE1:"Lead performer(s)/Soloist(s)",TPE2:"Band/orchestra/accompaniment",TPE3:"Conductor/performer refinement",TPE4:"Interpreted, remixed, or otherwise modified by",TPOS:"Part of a set",TPUB:"Publisher",TRCK:"Track number/Position in set",TRDA:"Recording dates",TRSN:"Internet radio station name",TRSO:"Internet radio station owner",TSIZ:"Size",TSRC:"ISRC (international standard recording code)",TSSE:"Software/Hardware and settings used for encoding", 20 | TYER:"Year",TXXX:"User defined text information frame",UFID:"Unique file identifier",USER:"Terms of use",USLT:"Unsychronized lyric/text transcription",WCOM:"Commercial information",WCOP:"Copyright/Legal information",WOAF:"Official audio file webpage",WOAR:"Official artist/performer webpage",WOAS:"Official audio source webpage",WORS:"Official internet radio station homepage",WPAY:"Payment",WPUB:"Publishers official webpage",WXXX:"User defined URL link frame"};var f={title:["TIT2","TT2"],artist:["TPE1", 21 | "TP1"],album:["TALB","TAL"],year:["TYER","TYE"],comment:["COMM","COM"],track:["TRCK","TRK"],genre:["TCON","TCO"],picture:["APIC","PIC"],lyrics:["USLT","ULT"]},c=["title","artist","album","track"];d.o=function(a,b){a.f([0,i(6,a)],b)};d.p=function(a,b){var g=0,h=a.a(g+3);if(h>4)return{version:">2.4"};var e=a.a(g+4),v=a.d(g+5,7),k=a.d(g+5,6),s=a.d(g+5,5),j=i(g+6,a);g+=10;if(k){var o=a.h(g,!0);g+=o+4}var h={version:"2."+h+"."+e,major:h,revision:e,flags:{unsynchronisation:v,extended_header:k,experimental_indicator:s}, 22 | size:j},l;if(v)l={};else{j-=10;for(var v=a,e=b,k={},s=h.major,o=[],n=0,m;m=(e||c)[n];n++)o=o.concat(f[m]||[m]);for(e=o;g2&&(u={message:{Y:n.d(m+8,6),K:n.d(m+8,5),V:n.d(m+8,4)},m:{T:n.d(m+8+1,7),H:n.d(m+8+1,3),J:n.d(m+8+1,2),D:n.d(m+8+1,1),w:n.d(m+8+1,0)}}),m+=t,u&&u.m.w&&(i(m,n),m+=4,r-=4),!u||!u.m.D))l in 23 | d.b?o=d.b[l]:l[0]=="T"&&(o=d.b["T*"]),o=o?o(m,r,n,u):void 0,o={id:l,size:r,description:l in d.frames?d.frames[l]:"Unknown",data:o},l in k?(k[l].id&&(k[l]=[k[l]]),k[l].push(o)):k[l]=o}l=k}for(var w in f)if(f.hasOwnProperty(w)){a:{r=f[w];typeof r=="string"&&(r=[r]);t=0;for(g=void 0;g=r[t];t++)if(g in l){a=l[g].data;break a}a=void 0}a&&(h[w]=a)}for(var x in l)l.hasOwnProperty(x)&&(h[x]=l[x]);return h};g.ID3v2=d})(this);(function(){function g(d){var f;switch(d){case 0:f="iso-8859-1";break;case 1:f="utf-16";break;case 2:f="utf-16be";break;case 3:f="utf-8"}return f}var i=["32x32 pixels 'file icon' (PNG only)","Other file icon","Cover (front)","Cover (back)","Leaflet page","Media (e.g. lable side of CD)","Lead artist/lead performer/soloist","Artist/performer","Conductor","Band/Orchestra","Composer","Lyricist/text writer","Recording Location","During recording","During performance","Movie/video screen capture","A bright coloured fish", 24 | "Illustration","Band/artist logotype","Publisher/Studio logotype"];ID3v2.b.APIC=function(d,f,c,a,b){var b=b||"3",a=d,p=g(c.a(d));switch(b){case "2":var h=c.c(d+1,3);d+=4;break;case "3":case "4":h=c.e(d+1,f-(d-a),p),d+=1+h.g}b=c.a(d,1);b=i[b];p=c.e(d+1,f-(d-a),p);d+=1+p.g;return{format:h.toString(),type:b,description:p.toString(),data:c.n(d,a+f-d)}};ID3v2.b.COMM=function(d,f,c){var a=d,b=g(c.a(d)),i=c.c(d+1,3),h=c.e(d+4,f-4,b);d+=4+h.g;d=c.e(d,a+f-d,b);return{language:i,X:h.toString(),text:d.toString()}}; 25 | ID3v2.b.COM=ID3v2.b.COMM;ID3v2.b.PIC=function(d,f,c,a){return ID3v2.b.APIC(d,f,c,a,"2")};ID3v2.b.PCNT=function(d,f,c){return c.O(d)};ID3v2.b.CNT=ID3v2.b.PCNT;ID3v2.b["T*"]=function(d,f,c){var a=g(c.a(d));return c.e(d+1,f-1,a).toString()};ID3v2.b.TCON=function(){return ID3v2.b["T*"].apply(this,arguments).replace(/^\(\d+\)/,"")};ID3v2.b.TCO=ID3v2.b.TCON;ID3v2.b.USLT=function(d,f,c){var a=d,b=g(c.a(d)),i=c.c(d+1,3),h=c.e(d+4,f-4,b);d+=4+h.g;d=c.e(d,a+f-d,b);return{language:i,I:h.toString(),U:d.toString()}}; 26 | ID3v2.b.ULT=ID3v2.b.USLT})();(function(g){function i(c,a,b,d){var g=c.h(a,!0);if(g==0)d();else{var e=c.c(a+4,4);["moov","udta","meta","ilst"].indexOf(e)>-1?(e=="meta"&&(a+=4),c.f([a+8,a+8+8],function(){i(c,a+8,g-8,d)})):c.f([a+(e in f.l?0:g),a+g+8],function(){i(c,a+g,b,d)})}}function d(c,a,b,g,h){for(var h=h===void 0?"":h+" ",e=b;e-1){k=="meta"&&(e+=4);d(c,a,e+8,i-8,h);break}if(f.l[k]){var s=a.q(e+16+1),j=f.l[k],s=f.types[s];if(k== 27 | "trkn")c[j[0]]=a.a(e+16+11),c.count=a.a(e+16+13);else{var k=e+16+4+4,o=i-16-4-4;switch(s){case "text":c[j[0]]=a.e(k,o,"UTF-8");break;case "uint8":c[j[0]]=a.r(k);break;case "jpeg":case "png":c[j[0]]={m:"image/"+s,data:a.n(k,o)}}}}e+=i}}var f=g.v={};f.types={0:"uint8",1:"text",13:"jpeg",14:"png",21:"uint8"};f.l={"\u00a9alb":["album"],"\u00a9art":["artist"],"\u00a9ART":["artist"],aART:["artist"],"\u00a9day":["year"],"\u00a9nam":["title"],"\u00a9gen":["genre"],trkn:["track"],"\u00a9wrt":["composer"], 28 | "\u00a9too":["encoder"],cprt:["copyright"],covr:["picture"],"\u00a9grp":["grouping"],keyw:["keyword"],"\u00a9lyr":["lyrics"],"\u00a9gen":["genre"]};f.o=function(c,a){c.f([0,7],function(){i(c,0,c.j(),a)})};f.p=function(c){var a={};d(a,c,0,c.j());return a};g.ID4=g.v})(this); 29 | -------------------------------------------------------------------------------- /resources/jquery.jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/resources/jquery.jplayer.swf -------------------------------------------------------------------------------- /resources/map_download.php: -------------------------------------------------------------------------------- 1 | Something goes wrong, you don\'t have permission to use this page, sorry.'); 68 | 69 | /*unset($_SESSION['maphost']); 70 | setcookie('maphost', 'false', time() - 3600, '/');*/ 71 | 72 | //die("protocol= ". $protocol . " ---- web_address= ". $web_address . " ---- web_root= " . $web_root ." ----- file url= " . $file_url ." ----- file path= " . $file_path . " ---- file name= " . $file_name . " ---- maphost= " . $_SESSION['maphost']); 73 | 74 | function getFileSize($url) 75 | { 76 | if (substr($url, 0, 4) == 'http') { 77 | $x = array_change_key_case(get_headers($url, 1), CASE_LOWER); 78 | if (strcasecmp($x[0], 'HTTP/1.1 200 OK') != 0) { 79 | $x = $x['content-length'][1]; 80 | } else { 81 | $x = $x['content-length']; 82 | } 83 | } else { 84 | $x = @filesize($url); 85 | } 86 | return $x; 87 | } 88 | 89 | $fileSize = getFileSize($file_url); 90 | 91 | function fileExists($path) 92 | { 93 | return (@fopen($path,"r")==true); 94 | } 95 | 96 | if (!file_exists($file_path) || !fileExists($file_path)) 97 | die("
The file " . $file_path . " doesn't exist; check the URL"); 98 | 99 | //This will set the Content-Type to the appropriate setting for the file 100 | switch ($file_extension) { 101 | case 'mp3': 102 | $content_type = 'audio/mpeg'; 103 | break; 104 | case 'mp4a': 105 | $content_type = 'audio/mp4'; 106 | break; 107 | case 'm4a': 108 | $content_type = 'audio/m4a'; 109 | break; 110 | case 'wav': 111 | $content_type = 'audio/x-wav'; 112 | break; 113 | case 'ogg': 114 | $content_type = 'audio/ogg'; 115 | break; 116 | default: 117 | die ('You can\'t access ' . $file_extension . ' files!'); 118 | } 119 | 120 | /** 121 | * start stream the file 122 | */ 123 | header('Pragma: public'); 124 | header('Expires: 0'); 125 | header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 126 | header('Cache-Control: private'); 127 | header('Content-Type: ' . $content_type); 128 | header("Content-Description: File Transfer"); 129 | header("Content-Transfer-Encoding: Binary"); 130 | header("Content-disposition: attachment; filename=\"" . $filename . "\""); 131 | header('Content-Length: ' . $fileSize); 132 | header('Connection: close'); 133 | 134 | if ($fp = @fopen($file_path, 'rb')) { 135 | //die("fopen"); 136 | sleep(1); 137 | ignore_user_abort(); 138 | set_time_limit(0); 139 | while (!feof($fp)) { 140 | echo(@fread($fp, 1024 * 8)); 141 | ob_flush(); 142 | flush(); 143 | } 144 | fclose($fp); 145 | 146 | } else if (function_exists('curl_version')) { 147 | //die("curl"); 148 | $ch = curl_init(); 149 | curl_setopt($ch, CURLOPT_URL, $file_url); 150 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 151 | $contents = curl_exec($ch); 152 | // display file 153 | echo $contents; 154 | curl_close($ch); 155 | 156 | } else { 157 | //die("readfile"); 158 | // ob_end_flush(); 159 | ob_clean(); 160 | flush(); 161 | @readfile($file_path); 162 | } 163 | 164 | clearstatcache(); 165 | 166 | exit; 167 | -------------------------------------------------------------------------------- /resources/spectrum-cp/spectrum.css: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: spectrum.css 5 | last modified: 11/21/14 5:17 AM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | /*** 23 | Spectrum Colorpicker v1.5.2 24 | https://github.com/bgrins/spectrum 25 | Author: Brian Grinstead 26 | License: MIT 27 | ***/ 28 | 29 | .sp-container { 30 | position:absolute; 31 | top:0; 32 | left:0; 33 | display:inline-block; 34 | *display: inline; 35 | *zoom: 1; 36 | /* https://github.com/bgrins/spectrum/issues/40 */ 37 | z-index: 9999994; 38 | overflow: hidden; 39 | } 40 | .sp-container.sp-flat { 41 | position: relative; 42 | } 43 | 44 | /* Fix for * { box-sizing: border-box; } */ 45 | .sp-container, 46 | .sp-container * { 47 | -webkit-box-sizing: content-box; 48 | -moz-box-sizing: content-box; 49 | box-sizing: content-box; 50 | } 51 | 52 | /* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */ 53 | .sp-top { 54 | position:relative; 55 | width: 100%; 56 | display:inline-block; 57 | } 58 | .sp-top-inner { 59 | position:absolute; 60 | top:0; 61 | left:0; 62 | bottom:0; 63 | right:0; 64 | } 65 | .sp-color { 66 | position: absolute; 67 | top:0; 68 | left:0; 69 | bottom:0; 70 | right:20%; 71 | } 72 | .sp-hue { 73 | position: absolute; 74 | top:0; 75 | right:0; 76 | bottom:0; 77 | left:84%; 78 | height: 100%; 79 | } 80 | 81 | .sp-clear-enabled .sp-hue { 82 | top:33px; 83 | height: 77.5%; 84 | } 85 | 86 | .sp-fill { 87 | padding-top: 80%; 88 | } 89 | .sp-sat, .sp-val { 90 | position: absolute; 91 | top:0; 92 | left:0; 93 | right:0; 94 | bottom:0; 95 | } 96 | 97 | .sp-alpha-enabled .sp-top { 98 | margin-bottom: 18px; 99 | } 100 | .sp-alpha-enabled .sp-alpha { 101 | display: block; 102 | } 103 | .sp-alpha-handle { 104 | position:absolute; 105 | top:-4px; 106 | bottom: -4px; 107 | width: 6px; 108 | left: 50%; 109 | cursor: pointer; 110 | border: 1px solid black; 111 | background: white; 112 | opacity: .8; 113 | } 114 | .sp-alpha { 115 | display: none; 116 | position: absolute; 117 | bottom: -14px; 118 | right: 0; 119 | left: 0; 120 | height: 8px; 121 | } 122 | .sp-alpha-inner { 123 | border: solid 1px #333; 124 | } 125 | 126 | .sp-clear { 127 | display: none; 128 | } 129 | 130 | .sp-clear.sp-clear-display { 131 | background-position: center; 132 | } 133 | 134 | .sp-clear-enabled .sp-clear { 135 | display: block; 136 | position:absolute; 137 | top:0px; 138 | right:0; 139 | bottom:0; 140 | left:84%; 141 | height: 28px; 142 | } 143 | 144 | /* Don't allow text selection */ 145 | .sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button { 146 | -webkit-user-select:none; 147 | -moz-user-select: -moz-none; 148 | -o-user-select:none; 149 | user-select: none; 150 | } 151 | 152 | .sp-container.sp-input-disabled .sp-input-container { 153 | display: none; 154 | } 155 | .sp-container.sp-buttons-disabled .sp-button-container { 156 | display: none; 157 | } 158 | .sp-container.sp-palette-buttons-disabled .sp-palette-button-container { 159 | display: none; 160 | } 161 | .sp-palette-only .sp-picker-container { 162 | display: none; 163 | } 164 | .sp-palette-disabled .sp-palette-container { 165 | display: none; 166 | } 167 | 168 | .sp-initial-disabled .sp-initial { 169 | display: none; 170 | } 171 | 172 | 173 | /* Gradients for hue, saturation and value instead of images. Not pretty... but it works */ 174 | .sp-sat { 175 | background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0))); 176 | background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0)); 177 | background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); 178 | background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); 179 | background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0)); 180 | background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0)); 181 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)"; 182 | filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81'); 183 | } 184 | .sp-val { 185 | background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0))); 186 | background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0)); 187 | background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); 188 | background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); 189 | background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0)); 190 | background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0)); 191 | -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)"; 192 | filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000'); 193 | } 194 | 195 | .sp-hue { 196 | background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%); 197 | background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%); 198 | background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%); 199 | background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000)); 200 | background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%); 201 | background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%); 202 | } 203 | 204 | /* IE filters do not support multiple color stops. 205 | Generate 6 divs, line them up, and do two color gradients for each. 206 | Yes, really. 207 | */ 208 | .sp-1 { 209 | height:17%; 210 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00'); 211 | } 212 | .sp-2 { 213 | height:16%; 214 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00'); 215 | } 216 | .sp-3 { 217 | height:17%; 218 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff'); 219 | } 220 | .sp-4 { 221 | height:17%; 222 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff'); 223 | } 224 | .sp-5 { 225 | height:16%; 226 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff'); 227 | } 228 | .sp-6 { 229 | height:17%; 230 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000'); 231 | } 232 | 233 | .sp-hidden { 234 | display: none !important; 235 | } 236 | 237 | /* Clearfix hack */ 238 | .sp-cf:before, .sp-cf:after { content: ""; display: table; } 239 | .sp-cf:after { clear: both; } 240 | .sp-cf { *zoom: 1; } 241 | 242 | /* Mobile devices, make hue slider bigger so it is easier to slide */ 243 | @media (max-device-width: 480px) { 244 | .sp-color { right: 40%; } 245 | .sp-hue { left: 63%; } 246 | .sp-fill { padding-top: 60%; } 247 | } 248 | .sp-dragger { 249 | border-radius: 5px; 250 | height: 5px; 251 | width: 5px; 252 | border: 1px solid #fff; 253 | background: #000; 254 | cursor: pointer; 255 | position:absolute; 256 | top:0; 257 | left: 0; 258 | } 259 | .sp-slider { 260 | position: absolute; 261 | top:0; 262 | cursor:pointer; 263 | height: 3px; 264 | left: -1px; 265 | right: -1px; 266 | border: 1px solid #000; 267 | background: white; 268 | opacity: .8; 269 | } 270 | 271 | /* 272 | Theme authors: 273 | Here are the basic themeable display options (colors, fonts, global widths). 274 | See http://bgrins.github.io/spectrum/themes/ for instructions. 275 | */ 276 | 277 | .sp-container { 278 | border-radius: 0; 279 | background-color: #ECECEC; 280 | border: solid 1px #f0c49B; 281 | padding: 0; 282 | } 283 | .sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear { 284 | font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif; 285 | -webkit-box-sizing: border-box; 286 | -moz-box-sizing: border-box; 287 | -ms-box-sizing: border-box; 288 | box-sizing: border-box; 289 | } 290 | .sp-top { 291 | margin-bottom: 3px; 292 | } 293 | .sp-color, .sp-hue, .sp-clear { 294 | border: solid 1px #666; 295 | } 296 | 297 | /* Input */ 298 | .sp-input-container { 299 | float:right; 300 | width: 100px; 301 | margin-bottom: 4px; 302 | } 303 | .sp-initial-disabled .sp-input-container { 304 | width: 100%; 305 | } 306 | .sp-input { 307 | font-size: 12px !important; 308 | border: 1px inset; 309 | padding: 4px 5px; 310 | margin: 0; 311 | width: 100%; 312 | background:transparent; 313 | border-radius: 3px; 314 | color: #222; 315 | } 316 | .sp-input:focus { 317 | border: 1px solid orange; 318 | } 319 | .sp-input.sp-validation-error { 320 | border: 1px solid red; 321 | background: #fdd; 322 | } 323 | .sp-picker-container , .sp-palette-container { 324 | float:left; 325 | position: relative; 326 | padding: 10px; 327 | padding-bottom: 300px; 328 | margin-bottom: -290px; 329 | } 330 | .sp-picker-container { 331 | width: 172px; 332 | border-left: solid 1px #fff; 333 | } 334 | 335 | /* Palettes */ 336 | .sp-palette-container { 337 | border-right: solid 1px #ccc; 338 | } 339 | 340 | .sp-palette-only .sp-palette-container { 341 | border: 0; 342 | } 343 | 344 | .sp-palette .sp-thumb-el { 345 | display: block; 346 | position:relative; 347 | float:left; 348 | width: 24px; 349 | height: 15px; 350 | margin: 3px; 351 | cursor: pointer; 352 | border:solid 2px transparent; 353 | } 354 | .sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active { 355 | border-color: orange; 356 | } 357 | .sp-thumb-el { 358 | position:relative; 359 | } 360 | 361 | /* Initial */ 362 | .sp-initial { 363 | float: left; 364 | border: solid 1px #333; 365 | } 366 | .sp-initial span { 367 | width: 30px; 368 | height: 25px; 369 | border:none; 370 | display:block; 371 | float:left; 372 | margin:0; 373 | } 374 | 375 | .sp-initial .sp-clear-display { 376 | background-position: center; 377 | } 378 | 379 | /* Buttons */ 380 | .sp-palette-button-container, 381 | .sp-button-container { 382 | float: right; 383 | } 384 | 385 | /* Replacer (the little preview div that shows up instead of the ) */ 386 | .sp-replacer { 387 | margin:0; 388 | overflow:hidden; 389 | cursor:pointer; 390 | padding: 4px; 391 | display:inline-block; 392 | *zoom: 1; 393 | *display: inline; 394 | border: solid 1px #91765d; 395 | background: #eee; 396 | color: #333; 397 | vertical-align: middle; 398 | } 399 | .sp-replacer:hover, .sp-replacer.sp-active { 400 | border-color: #F0C49B; 401 | color: #111; 402 | } 403 | .sp-replacer.sp-disabled { 404 | cursor:default; 405 | border-color: silver; 406 | color: silver; 407 | } 408 | .sp-dd { 409 | padding: 2px 0; 410 | height: 16px; 411 | line-height: 16px; 412 | float:left; 413 | font-size:10px; 414 | } 415 | .sp-preview { 416 | position:relative; 417 | width:25px; 418 | height: 20px; 419 | border: solid 1px #222; 420 | margin-right: 5px; 421 | float:left; 422 | z-index: 0; 423 | } 424 | 425 | .sp-palette { 426 | *width: 220px; 427 | max-width: 220px; 428 | } 429 | .sp-palette .sp-thumb-el { 430 | width:16px; 431 | height: 16px; 432 | margin:2px 1px; 433 | border: solid 1px #d0d0d0; 434 | } 435 | 436 | .sp-container { 437 | padding-bottom:0; 438 | } 439 | 440 | 441 | /* Buttons: http://hellohappy.org/css3-buttons/ */ 442 | .sp-container button { 443 | background-color: #eeeeee; 444 | background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc); 445 | background-image: -moz-linear-gradient(top, #eeeeee, #cccccc); 446 | background-image: -ms-linear-gradient(top, #eeeeee, #cccccc); 447 | background-image: -o-linear-gradient(top, #eeeeee, #cccccc); 448 | background-image: linear-gradient(to bottom, #eeeeee, #cccccc); 449 | border: 1px solid #ccc; 450 | border-bottom: 1px solid #bbb; 451 | border-radius: 3px; 452 | color: #333; 453 | font-size: 14px; 454 | line-height: 1; 455 | padding: 5px 4px; 456 | text-align: center; 457 | text-shadow: 0 1px 0 #eee; 458 | vertical-align: middle; 459 | } 460 | .sp-container button:hover { 461 | background-color: #dddddd; 462 | background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb); 463 | background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb); 464 | background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb); 465 | background-image: -o-linear-gradient(top, #dddddd, #bbbbbb); 466 | background-image: linear-gradient(to bottom, #dddddd, #bbbbbb); 467 | border: 1px solid #bbb; 468 | border-bottom: 1px solid #999; 469 | cursor: pointer; 470 | text-shadow: 0 1px 0 #ddd; 471 | } 472 | .sp-container button:active { 473 | border: 1px solid #aaa; 474 | border-bottom: 1px solid #888; 475 | -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; 476 | -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; 477 | -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; 478 | -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; 479 | box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; 480 | } 481 | .sp-cancel { 482 | font-size: 11px; 483 | color: #d93f3f !important; 484 | margin:0; 485 | padding:2px; 486 | margin-right: 5px; 487 | vertical-align: middle; 488 | text-decoration:none; 489 | 490 | } 491 | .sp-cancel:hover { 492 | color: #d93f3f !important; 493 | text-decoration: underline; 494 | } 495 | 496 | 497 | .sp-palette span:hover, .sp-palette span.sp-thumb-active { 498 | border-color: #000; 499 | } 500 | 501 | .sp-preview, .sp-alpha, .sp-thumb-el { 502 | position:relative; 503 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); 504 | } 505 | .sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner { 506 | display:block; 507 | position:absolute; 508 | top:0;left:0;bottom:0;right:0; 509 | } 510 | 511 | .sp-palette .sp-thumb-inner { 512 | background-position: 50% 50%; 513 | background-repeat: no-repeat; 514 | } 515 | 516 | .sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner { 517 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=); 518 | } 519 | 520 | .sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner { 521 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=); 522 | } 523 | 524 | .sp-clear-display { 525 | background-repeat:no-repeat; 526 | background-position: center; 527 | background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==); 528 | } 529 | -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/DroidSansMono.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/DroidSansMono/DroidSansMono.eot -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/DroidSansMono/DroidSansMono.ttf -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/DroidSansMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/DroidSansMono/DroidSansMono.woff -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/Google Android License.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2008 The Android Open Source Project 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | ########## 16 | 17 | This directory contains the fonts for the platform. They are licensed 18 | under the Apache 2 license. 19 | -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/demo.html: -------------------------------------------------------------------------------- 1 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | Font Face Demo 30 | 31 | 42 | 43 | 44 | 45 |
46 |

Font-face Demo for the Droid Sans Mono Font

47 | 48 | 49 | 50 |

Droid Sans Mono Regular - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

51 | 52 |
53 | 54 | 55 | -------------------------------------------------------------------------------- /src/css/font/DroidSansMono/stylesheet.css: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: stylesheet.css 5 | last modified: 10/25/18 8:01 PM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 19, 2011 05:14:32 AM America/New_York */ 23 | 24 | 25 | 26 | @font-face { 27 | font-family: 'DroidSansMonoRegular'; 28 | src: url('DroidSansMono.eot'); 29 | src: url('DroidSansMono.eot?#iefix') format('embedded-opentype'), 30 | url('DroidSansMono.woff') format('woff'), 31 | url('DroidSansMono.ttf') format('truetype'), 32 | url('DroidSansMono.svg#DroidSansMonoRegular') format('svg'); 33 | font-weight: normal; 34 | font-style: normal; 35 | 36 | } 37 | 38 | -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/master/mbaudio_font-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/mbAudioFont/master/mbaudio_font-regular.otf -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/master/mbaudio_font.glyphs: -------------------------------------------------------------------------------- 1 | { 2 | copyright = "Copyright (c) 2010 by mb.ideas. All rights reserved."; 3 | customParameters = ( 4 | { 5 | name = vendorID; 6 | value = "MB "; 7 | }, 8 | { 9 | name = glyphOrder; 10 | value = ( 11 | ".notdef", 12 | uni0000, 13 | uni000D, 14 | uni00A0, 15 | F, 16 | N, 17 | O, 18 | P, 19 | R, 20 | S, 21 | V, 22 | l, 23 | m, 24 | p, 25 | uni2000, 26 | uni2001, 27 | uni2002, 28 | uni2003, 29 | uni2004, 30 | uni2005, 31 | uni2006, 32 | uni2007, 33 | uni2008, 34 | uni2009, 35 | uni200A, 36 | endash, 37 | emdash, 38 | uni202F, 39 | uni205F 40 | ); 41 | } 42 | ); 43 | date = "2010-07-11 13:49:44 +0000"; 44 | designer = "Matteo Bicocchi"; 45 | familyName = "mbaudio_font"; 46 | fontMaster = ( 47 | { 48 | ascender = 1536; 49 | capHeight = 1216; 50 | customParameters = ( 51 | { 52 | name = typoAscender; 53 | value = 1536; 54 | }, 55 | { 56 | name = typoDescender; 57 | value = "-512"; 58 | }, 59 | { 60 | name = typoLineGap; 61 | value = 0; 62 | }, 63 | { 64 | name = underlinePosition; 65 | value = "-154"; 66 | } 67 | ); 68 | descender = "-512"; 69 | id = "4C42F807-EDC7-4526-B56E-0964A4331130"; 70 | weightValue = 400; 71 | widthValue = 5; 72 | xHeight = 1216; 73 | } 74 | ); 75 | glyphs = ( 76 | { 77 | glyphname = F; 78 | layers = ( 79 | { 80 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 81 | name = Regular; 82 | paths = ( 83 | { 84 | closed = 1; 85 | nodes = ( 86 | "1618 576 LINE", 87 | "978 -64 LINE", 88 | "978 1216 LINE" 89 | ); 90 | }, 91 | { 92 | closed = 1; 93 | nodes = ( 94 | "928 576 LINE", 95 | "288 -64 LINE", 96 | "288 1216 LINE" 97 | ); 98 | }, 99 | { 100 | closed = 1; 101 | nodes = ( 102 | "1772 -64 LINE", 103 | "1644 -64 LINE", 104 | "1644 1216 LINE", 105 | "1772 1216 LINE" 106 | ); 107 | } 108 | ); 109 | width = 2048; 110 | } 111 | ); 112 | unicode = 0046; 113 | }, 114 | { 115 | glyphname = N; 116 | layers = ( 117 | { 118 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 119 | name = Regular; 120 | paths = ( 121 | { 122 | closed = 1; 123 | nodes = ( 124 | "1602 -64 LINE", 125 | "962 576 LINE", 126 | "1602 1216 LINE" 127 | ); 128 | }, 129 | { 130 | closed = 1; 131 | nodes = ( 132 | "912 -64 LINE", 133 | "272 576 LINE", 134 | "912 1216 LINE" 135 | ); 136 | } 137 | ); 138 | width = 2048; 139 | } 140 | ); 141 | unicode = 004E; 142 | }, 143 | { 144 | glyphname = O; 145 | layers = ( 146 | { 147 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 148 | name = Regular; 149 | paths = ( 150 | { 151 | closed = 1; 152 | nodes = ( 153 | "1082 576 LINE", 154 | "442 -64 LINE", 155 | "442 1216 LINE" 156 | ); 157 | }, 158 | { 159 | closed = 1; 160 | nodes = ( 161 | "1772 576 LINE", 162 | "1132 -64 LINE", 163 | "1132 1216 LINE" 164 | ); 165 | } 166 | ); 167 | width = 2048; 168 | } 169 | ); 170 | unicode = 004F; 171 | }, 172 | { 173 | glyphname = P; 174 | layers = ( 175 | { 176 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 177 | name = Regular; 178 | paths = ( 179 | { 180 | closed = 1; 181 | nodes = ( 182 | "1408 640 LINE", 183 | "768 0 LINE", 184 | "768 1280 LINE" 185 | ); 186 | } 187 | ); 188 | width = 2048; 189 | } 190 | ); 191 | unicode = 0050; 192 | }, 193 | { 194 | glyphname = R; 195 | layers = ( 196 | { 197 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 198 | name = Regular; 199 | paths = ( 200 | { 201 | closed = 1; 202 | nodes = ( 203 | "1772 -64 LINE", 204 | "1132 576 LINE", 205 | "1772 1216 LINE" 206 | ); 207 | }, 208 | { 209 | closed = 1; 210 | nodes = ( 211 | "1082 -64 LINE", 212 | "442 576 LINE", 213 | "1082 1216 LINE" 214 | ); 215 | }, 216 | { 217 | closed = 1; 218 | nodes = ( 219 | "416 -64 LINE", 220 | "288 -64 LINE", 221 | "288 1216 LINE", 222 | "416 1216 LINE" 223 | ); 224 | } 225 | ); 226 | width = 2048; 227 | } 228 | ); 229 | unicode = 0052; 230 | }, 231 | { 232 | glyphname = S; 233 | layers = ( 234 | { 235 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 236 | name = Regular; 237 | paths = ( 238 | { 239 | closed = 1; 240 | nodes = ( 241 | "1600 38 LINE", 242 | "448 38 LINE", 243 | "448 1190 LINE", 244 | "1600 1190 LINE" 245 | ); 246 | } 247 | ); 248 | width = 2048; 249 | } 250 | ); 251 | unicode = 0053; 252 | }, 253 | { 254 | glyphname = V; 255 | layers = ( 256 | { 257 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 258 | name = Regular; 259 | paths = ( 260 | { 261 | closed = 1; 262 | nodes = ( 263 | "900 -93 LINE", 264 | "430 341 LINE", 265 | "132 341 LINE", 266 | "132 927 LINE", 267 | "430 927 LINE", 268 | "900 1362 LINE" 269 | ); 270 | } 271 | ); 272 | width = 1100; 273 | } 274 | ); 275 | unicode = 0056; 276 | }, 277 | { 278 | glyphname = l; 279 | lastChange = "2014-11-04 20:08:02 +0100"; 280 | layers = ( 281 | { 282 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 283 | name = Regular; 284 | paths = ( 285 | { 286 | closed = 1; 287 | nodes = ( 288 | "750 958 OFFCURVE", 289 | "733 941 OFFCURVE", 290 | "700 941 CURVE SMOOTH", 291 | "684 941 OFFCURVE", 292 | "617 976 OFFCURVE", 293 | "498 1045 CURVE SMOOTH", 294 | "285 1173 LINE SMOOTH", 295 | "268 1183 OFFCURVE", 296 | "259 1197 OFFCURVE", 297 | "259 1215 CURVE SMOOTH", 298 | "259 1250 OFFCURVE", 299 | "276 1267 OFFCURVE", 300 | "309 1267 CURVE SMOOTH", 301 | "325 1267 OFFCURVE", 302 | "392 1232 OFFCURVE", 303 | "511 1163 CURVE SMOOTH", 304 | "724 1035 LINE SMOOTH", 305 | "741 1025 OFFCURVE", 306 | "750 1011 OFFCURVE", 307 | "750 992 CURVE SMOOTH" 308 | ); 309 | }, 310 | { 311 | closed = 1; 312 | nodes = ( 313 | "750 597 OFFCURVE", 314 | "733 580 OFFCURVE", 315 | "700 580 CURVE SMOOTH", 316 | "250 580 LINE SMOOTH", 317 | "217 580 OFFCURVE", 318 | "200 597 OFFCURVE", 319 | "200 630 CURVE SMOOTH", 320 | "200 663 OFFCURVE", 321 | "217 680 OFFCURVE", 322 | "250 680 CURVE SMOOTH", 323 | "700 680 LINE SMOOTH", 324 | "733 680 OFFCURVE", 325 | "750 663 OFFCURVE", 326 | "750 630 CURVE SMOOTH" 327 | ); 328 | }, 329 | { 330 | closed = 1; 331 | nodes = ( 332 | "750 242 OFFCURVE", 333 | "741 228 OFFCURVE", 334 | "724 218 CURVE SMOOTH", 335 | "511 90 LINE SMOOTH", 336 | "392 20 OFFCURVE", 337 | "325 -15 OFFCURVE", 338 | "309 -15 CURVE SMOOTH", 339 | "276 -15 OFFCURVE", 340 | "259 2 OFFCURVE", 341 | "259 37 CURVE SMOOTH", 342 | "259 55 OFFCURVE", 343 | "268 69 OFFCURVE", 344 | "285 79 CURVE SMOOTH", 345 | "498 207 LINE SMOOTH", 346 | "617 277 OFFCURVE", 347 | "684 312 OFFCURVE", 348 | "700 312 CURVE SMOOTH", 349 | "733 312 OFFCURVE", 350 | "750 295 OFFCURVE", 351 | "750 260 CURVE SMOOTH" 352 | ); 353 | } 354 | ); 355 | width = 900; 356 | } 357 | ); 358 | unicode = 006C; 359 | }, 360 | { 361 | glyphname = m; 362 | layers = ( 363 | { 364 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 365 | name = Regular; 366 | paths = ( 367 | { 368 | closed = 1; 369 | nodes = ( 370 | "641 1197 OFFCURVE", 371 | "632 1183 OFFCURVE", 372 | "615 1173 CURVE SMOOTH", 373 | "402 1045 LINE SMOOTH", 374 | "283 976 OFFCURVE", 375 | "216 941 OFFCURVE", 376 | "200 941 CURVE SMOOTH", 377 | "167 941 OFFCURVE", 378 | "150 958 OFFCURVE", 379 | "150 992 CURVE SMOOTH", 380 | "150 1011 OFFCURVE", 381 | "159 1025 OFFCURVE", 382 | "176 1035 CURVE SMOOTH", 383 | "389 1163 LINE SMOOTH", 384 | "508 1232 OFFCURVE", 385 | "575 1267 OFFCURVE", 386 | "591 1267 CURVE SMOOTH", 387 | "624 1267 OFFCURVE", 388 | "641 1250 OFFCURVE", 389 | "641 1215 CURVE SMOOTH" 390 | ); 391 | }, 392 | { 393 | closed = 1; 394 | nodes = ( 395 | "700 597 OFFCURVE", 396 | "683 580 OFFCURVE", 397 | "650 580 CURVE SMOOTH", 398 | "200 580 LINE SMOOTH", 399 | "167 580 OFFCURVE", 400 | "150 597 OFFCURVE", 401 | "150 630 CURVE SMOOTH", 402 | "150 663 OFFCURVE", 403 | "167 680 OFFCURVE", 404 | "200 680 CURVE SMOOTH", 405 | "650 680 LINE SMOOTH", 406 | "683 680 OFFCURVE", 407 | "700 663 OFFCURVE", 408 | "700 630 CURVE SMOOTH" 409 | ); 410 | }, 411 | { 412 | closed = 1; 413 | nodes = ( 414 | "641 2 OFFCURVE", 415 | "624 -15 OFFCURVE", 416 | "591 -15 CURVE SMOOTH", 417 | "575 -15 OFFCURVE", 418 | "508 20 OFFCURVE", 419 | "389 90 CURVE SMOOTH", 420 | "176 218 LINE SMOOTH", 421 | "159 228 OFFCURVE", 422 | "150 242 OFFCURVE", 423 | "150 260 CURVE SMOOTH", 424 | "150 295 OFFCURVE", 425 | "167 312 OFFCURVE", 426 | "200 312 CURVE SMOOTH", 427 | "216 312 OFFCURVE", 428 | "283 277 OFFCURVE", 429 | "402 207 CURVE SMOOTH", 430 | "615 79 LINE SMOOTH", 431 | "632 69 OFFCURVE", 432 | "641 55 OFFCURVE", 433 | "641 37 CURVE SMOOTH" 434 | ); 435 | } 436 | ); 437 | width = 900; 438 | } 439 | ); 440 | unicode = 006D; 441 | }, 442 | { 443 | glyphname = p; 444 | layers = ( 445 | { 446 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 447 | name = Regular; 448 | paths = ( 449 | { 450 | closed = 1; 451 | nodes = ( 452 | "1383 -64 LINE", 453 | "1127 -64 LINE", 454 | "1127 1216 LINE", 455 | "1383 1216 LINE" 456 | ); 457 | }, 458 | { 459 | closed = 1; 460 | nodes = ( 461 | "871 -64 LINE", 462 | "615 -64 LINE", 463 | "615 1216 LINE", 464 | "871 1216 LINE" 465 | ); 466 | } 467 | ); 468 | width = 2048; 469 | } 470 | ); 471 | unicode = 0070; 472 | }, 473 | { 474 | glyphname = d; 475 | lastChange = "2014-11-04 20:23:20 +0100"; 476 | layers = ( 477 | { 478 | layerId = "4C42F807-EDC7-4526-B56E-0964A4331130"; 479 | name = Regular; 480 | paths = ( 481 | { 482 | closed = 1; 483 | nodes = ( 484 | "2 403 OFFCURVE", 485 | "105 224 OFFCURVE", 486 | "273 128 CURVE", 487 | "357 80 OFFCURVE", 488 | "449 56 OFFCURVE", 489 | "548 56 CURVE", 490 | "649 56 OFFCURVE", 491 | "740 80 OFFCURVE", 492 | "821 128 CURVE", 493 | "989 224 OFFCURVE", 494 | "1094 405 OFFCURVE", 495 | "1094 602 CURVE", 496 | "1094 799 OFFCURVE", 497 | "989 977 OFFCURVE", 498 | "822 1075 CURVE", 499 | "738 1124 OFFCURVE", 500 | "647 1148 OFFCURVE", 501 | "548 1148 CURVE", 502 | "352 1148 OFFCURVE", 503 | "171 1042 OFFCURVE", 504 | "75 875 CURVE", 505 | "26 792 OFFCURVE", 506 | "2 701 OFFCURVE", 507 | "2 602 CURVE" 508 | ); 509 | }, 510 | { 511 | closed = 1; 512 | nodes = ( 513 | "275 600 LINE SMOOTH", 514 | "479 600 LINE SMOOTH", 515 | "479 875 LINE SMOOTH", 516 | "616 875 LINE SMOOTH", 517 | "616 600 LINE SMOOTH", 518 | "820 600 LINE SMOOTH", 519 | "548 329 LINE SMOOTH" 520 | ); 521 | } 522 | ); 523 | width = 1092; 524 | } 525 | ); 526 | unicode = 0064; 527 | } 528 | ); 529 | disablesNiceNames = 1; 530 | instances = ( 531 | { 532 | name = regular; 533 | } 534 | ); 535 | unitsPerEm = 2048; 536 | versionMajor = 1; 537 | versionMinor = 0; 538 | } 539 | -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/mbaudio_font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/mbAudioFont/mbaudio_font.eot -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/mbaudio_font.svg: -------------------------------------------------------------------------------- 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 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/mbaudio_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/mbAudioFont/mbaudio_font.ttf -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/mbaudio_font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pupunzi/jquery.mb.miniAudioPlayer/486646d91dc6785724435a640f80ac44a0b4315b/src/css/font/mbAudioFont/mbaudio_font.woff -------------------------------------------------------------------------------- /src/css/font/mbAudioFont/stylesheet.css: -------------------------------------------------------------------------------- 1 | /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | jquery.mb.components 3 | 4 | file: stylesheet.css 5 | last modified: 10/25/18 8:01 PM 6 | Version: {{ version }} 7 | Build: {{ buildnum }} 8 | 9 | Open Lab s.r.l., Florence - Italy 10 | email: matteo@open-lab.com 11 | blog: http://pupunzi.open-lab.com 12 | site: http://pupunzi.com 13 | http://open-lab.com 14 | 15 | Licences: MIT, GPL 16 | http://www.opensource.org/licenses/mit-license.php 17 | http://www.gnu.org/licenses/gpl.html 18 | 19 | Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) 20 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 21 | 22 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on July 11, 2010 */ 23 | 24 | 25 | 26 | @font-face { 27 | font-family: 'mb_audio_fontRegular'; 28 | src: url("'mb_audio_font.eot'"); 29 | src: local('☺'), url("'mb_audio_font.woff'") format('woff'), url("'mb_audio_font.ttf'") format('truetype'), url('mb_audio_font-webfont_svg#webfontywr4YLri') format('svg'); 30 | font-weight: normal; 31 | font-style: normal; 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/dep/id3.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * ID3 metadata for audio 4 | */ 5 | 6 | var q=null;function y(g,i,d){function f(b,h,e,a,d,f){var j=c();if(j){typeof f==="undefined"&&(f=!0);if(h)typeof j.onload!="undefined"?j.onload=function(){j.status=="200"||j.status=="206"?(j.fileSize=d||j.getResponseHeader("Content-Length"),h(j)):e&&e();j=q}:j.onreadystatechange=function(){if(j.readyState==4)j.status=="200"||j.status=="206"?(j.fileSize=d||j.getResponseHeader("Content-Length"),h(j)):e&&e(),j=q};j.open("GET",b,f);j.overrideMimeType&&j.overrideMimeType("text/plain; charset=x-user-defined");a&&j.setRequestHeader("Range", 7 | "bytes="+a[0]+"-"+a[1]);j.setRequestHeader("If-Modified-Since","Sat, 1 Jan 1970 00:00:00 GMT");j.send(q)}else e&&e()}function c(){var b=q;window.XMLHttpRequest?b=new XMLHttpRequest:window.F&&(b=new ActiveXObject("Microsoft.XMLHTTP"));return b}function a(b,h){var e=c();if(e){if(h)typeof e.onload!="undefined"?e.onload=function(){e.status=="200"&&h(this);e=q}:e.onreadystatechange=function(){e.readyState==4&&(e.status=="200"&&h(this),e=q)};e.open("HEAD",b,!0);e.send(q)}}function b(b,h){var e,a;function c(b){var p= 8 | ~~(b[0]/e)-a,b=~~(b[1]/e)+1+a;p<0&&(p=0);b>=blockTotal&&(b=blockTotal-1);return[p,b]}function g(a,c){for(;n[a[0]];)if(a[0]++,a[0]>a[1]){c&&c();return}for(;n[a[1]];)if(a[1]--,a[0]>a[1]){c&&c();return}var k=[a[0]*e,(a[1]+1)*e-1];f(b,function(b){parseInt(b.getResponseHeader("Content-Length"),10)==h&&(a[0]=0,a[1]=blockTotal-1,k[0]=0,k[1]=h-1);for(var b={data:b.W||b.responseText,s:k[0]},p=a[0];p<=a[1];p++)n[p]=b;i+=k[1]-k[0]+1;c&&c()},d,k,j,!!c)}var j,i=0,l=new z("",0,h),n=[];e=e||2048;a=typeof a==="undefined"? 9 | 0:a;blockTotal=~~((h-1)/e)+1;for(var m in l)l.hasOwnProperty(m)&&typeof l[m]==="function"&&(this[m]=l[m]);this.a=function(b){var a;g(c([b,b]));a=n[~~(b/e)];if(typeof a.data=="string")return a.data.charCodeAt(b-a.s)&255;else if(typeof a.data=="unknown")return IEBinary_getByteAt(a.data,b-a.s)};this.N=function(){return i};this.f=function(b,a){g(c(b),a)}}(function(){a(g,function(a){a=parseInt(a.getResponseHeader("Content-Length"),10)||-1;i(new b(g,a))})})()} 10 | function z(g,i,d){var f=g,c=i||0,a=0;this.P=function(){return f};if(typeof g=="string")a=d||f.length,this.a=function(b){return f.charCodeAt(b+c)&255};else if(typeof g=="unknown")a=d||IEBinary_getLength(f),this.a=function(b){return IEBinary_getByteAt(f,b+c)};this.n=function(b,a){for(var h=Array(a),e=0;e127?b-256:b};this.r=function(b,a){var h=a?(this.a(b)<< 11 | 8)+this.a(b+1):(this.a(b+1)<<8)+this.a(b);h<0&&(h+=65536);return h};this.S=function(b,a){var h=this.r(b,a);return h>32767?h-65536:h};this.h=function(b,a){var h=this.a(b),e=this.a(b+1),c=this.a(b+2),d=this.a(b+3),h=a?(((h<<8)+e<<8)+c<<8)+d:(((d<<8)+c<<8)+e<<8)+h;h<0&&(h+=4294967296);return h};this.R=function(b,a){var c=this.h(b,a);return c>2147483647?c-4294967296:c};this.q=function(b){var a=this.a(b),c=this.a(b+1),b=this.a(b+2),a=((a<<8)+c<<8)+b;a<0&&(a+=16777216);return a};this.c=function(b,a){for(var c= 12 | [],e=b,d=0;e=224?a[g]=String.fromCharCode(i):(j=(b[d+f]<<8)+b[d+c],d+=2,a[g]=String.fromCharCode(i,j))}b= 13 | new String(a.join(""));b.g=d;break;case "utf-8":e=0;d=Math.min(d||b.length,b.length);b[0]==239&&b[1]==187&&b[2]==191&&(e=3);f=[];for(c=0;e=194&&a<224?(g=b[e++],f[c]=String.fromCharCode(((a&31)<<6)+(g&63))):a>=224&&a<240?(g=b[e++],i=b[e++],f[c]=String.fromCharCode(((a&255)<<12)+((g&63)<<6)+(i&63))):a>=240&&a<245&&(g=b[e++],i=b[e++],j=b[e++],a=((a&7)<<18)+((g&63)<<12)+((i&63)<<6)+(j&63)-65536,f[c]=String.fromCharCode((a>>10)+55296, 14 | (a&1023)+56320));b=new String(f.join(""));b.g=e;break;default:d=[];f=f||b.length;for(e=0;e\r\nFunction IEBinary_getByteAt(strBinary, iOffset)\r\n\tIEBinary_getByteAt = AscB(MidB(strBinary,iOffset+1,1))\r\nEnd Function\r\nFunction IEBinary_getLength(strBinary)\r\n\tIEBinary_getLength = LenB(strBinary)\r\nEnd Function\r\n<\/script>\r\n");(function(g){g.FileAPIReader=function(g){return function(d,f){var c=new FileReader;c.onload=function(a){f(new z(a.target.result))};c.readAsBinaryString(g)}}})(this);(function(g){g.k={i:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",z:function(g){for(var d="",f,c,a,b,p,h,e=0;e>2,f=(f&3)<<4|c>>4,p=(c&15)<<2|a>>6,h=a&63,isNaN(c)?p=h=64:isNaN(a)&&(h=64),d=d+Base64.i.charAt(b)+Base64.i.charAt(f)+Base64.i.charAt(p)+Base64.i.charAt(h);return d}};g.Base64=g.k;g.k.encodeBytes=g.k.z})(this);(function(g){var i=g.t={},d={},f=[0,7];i.C=function(c,a,b){b=b||{};(b.dataReader||y)(c,function(g){g.f(f,function(){var f=g.c(4,7)=="ftypM4A"?ID4:g.c(0,3)=="ID3"?ID3v2:ID3v1;f.o(g,function(){var e=b.tags,i=f.p(g,e),e=d[c]||{},k;for(k in i)i.hasOwnProperty(k)&&(e[k]=i[k]);d[c]=e;a&&a()})})})};i.A=function(c){if(!d[c])return q;var a={},b;for(b in d[c])d[c].hasOwnProperty(b)&&(a[b]=d[c][b]);return a};i.B=function(c,a){if(!d[c])return q;return d[c][a]};g.ID3=g.t;i.loadTags=i.C;i.getAllTags=i.A;i.getTag= 15 | i.B})(this);(function(g){var i=g.u={},d=["Blues","Classic Rock","Country","Dance","Disco","Funk","Grunge","Hip-Hop","Jazz","Metal","New Age","Oldies","Other","Pop","R&B","Rap","Reggae","Rock","Techno","Industrial","Alternative","Ska","Death Metal","Pranks","Soundtrack","Euro-Techno","Ambient","Trip-Hop","Vocal","Jazz+Funk","Fusion","Trance","Classical","Instrumental","Acid","House","Game","Sound Clip","Gospel","Noise","AlternRock","Bass","Soul","Punk","Space","Meditative","Instrumental Pop","Instrumental Rock", 16 | "Ethnic","Gothic","Darkwave","Techno-Industrial","Electronic","Pop-Folk","Eurodance","Dream","Southern Rock","Comedy","Cult","Gangsta","Top 40","Christian Rap","Pop/Funk","Jungle","Native American","Cabaret","New Wave","Psychadelic","Rave","Showtunes","Trailer","Lo-Fi","Tribal","Acid Punk","Acid Jazz","Polka","Retro","Musical","Rock & Roll","Hard Rock","Folk","Folk-Rock","National Folk","Swing","Fast Fusion","Bebob","Latin","Revival","Celtic","Bluegrass","Avantgarde","Gothic Rock","Progressive Rock", 17 | "Psychedelic Rock","Symphonic Rock","Slow Rock","Big Band","Chorus","Easy Listening","Acoustic","Humour","Speech","Chanson","Opera","Chamber Music","Sonata","Symphony","Booty Bass","Primus","Porn Groove","Satire","Slow Jam","Club","Tango","Samba","Folklore","Ballad","Power Ballad","Rhythmic Soul","Freestyle","Duet","Punk Rock","Drum Solo","Acapella","Euro-House","Dance Hall"];i.o=function(d,c){var a=d.j();d.f([a-128-1,a],c)};i.p=function(f){var c=f.j()-128;if(f.c(c,3)=="TAG"){var a=f.c(c+3,30).replace(/\0/g, 18 | ""),b=f.c(c+33,30).replace(/\0/g,""),g=f.c(c+63,30).replace(/\0/g,""),h=f.c(c+93,4).replace(/\0/g,"");if(f.a(c+97+28)==0)var e=f.c(c+97,28).replace(/\0/g,""),i=f.a(c+97+29);else e="",i=0;f=f.a(c+97+30);return{version:"1.1",title:a,artist:b,album:g,year:h,comment:e,track:i,genre:f<255?d[f]:""}}else return{}};g.ID3v1=g.u})(this);(function(g){function i(a,b){var c=b.a(a),d=b.a(a+1),e=b.a(a+2);return b.a(a+3)&127|(e&127)<<7|(d&127)<<14|(c&127)<<21}var d=g.G={};d.b={};d.frames={BUF:"Recommended buffer size",CNT:"Play counter",COM:"Comments",CRA:"Audio encryption",CRM:"Encrypted meta frame",ETC:"Event timing codes",EQU:"Equalization",GEO:"General encapsulated object",IPL:"Involved people list",LNK:"Linked information",MCI:"Music CD Identifier",MLL:"MPEG location lookup table",PIC:"Attached picture",POP:"Popularimeter",REV:"Reverb", 19 | RVA:"Relative volume adjustment",SLT:"Synchronized lyric/text",STC:"Synced tempo codes",TAL:"Album/Movie/Show title",TBP:"BPM (Beats Per Minute)",TCM:"Composer",TCO:"Content type",TCR:"Copyright message",TDA:"Date",TDY:"Playlist delay",TEN:"Encoded by",TFT:"File type",TIM:"Time",TKE:"Initial key",TLA:"Language(s)",TLE:"Length",TMT:"Media type",TOA:"Original artist(s)/performer(s)",TOF:"Original filename",TOL:"Original Lyricist(s)/text writer(s)",TOR:"Original release year",TOT:"Original album/Movie/Show title", 20 | TP1:"Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group",TP2:"Band/Orchestra/Accompaniment",TP3:"Conductor/Performer refinement",TP4:"Interpreted, remixed, or otherwise modified by",TPA:"Part of a set",TPB:"Publisher",TRC:"ISRC (International Standard Recording Code)",TRD:"Recording dates",TRK:"Track number/Position in set",TSI:"Size",TSS:"Software/hardware and settings used for encoding",TT1:"Content group description",TT2:"Title/Songname/Content description",TT3:"Subtitle/Description refinement", 21 | TXT:"Lyricist/text writer",TXX:"User defined text information frame",TYE:"Year",UFI:"Unique file identifier",ULT:"Unsychronized lyric/text transcription",WAF:"Official audio file webpage",WAR:"Official artist/performer webpage",WAS:"Official audio source webpage",WCM:"Commercial information",WCP:"Copyright/Legal information",WPB:"Publishers official webpage",WXX:"User defined URL link frame",AENC:"Audio encryption",APIC:"Attached picture",COMM:"Comments",COMR:"Commercial frame",ENCR:"Encryption method registration", 22 | EQUA:"Equalization",ETCO:"Event timing codes",GEOB:"General encapsulated object",GRID:"Group identification registration",IPLS:"Involved people list",LINK:"Linked information",MCDI:"Music CD identifier",MLLT:"MPEG location lookup table",OWNE:"Ownership frame",PRIV:"Private frame",PCNT:"Play counter",POPM:"Popularimeter",POSS:"Position synchronisation frame",RBUF:"Recommended buffer size",RVAD:"Relative volume adjustment",RVRB:"Reverb",SYLT:"Synchronized lyric/text",SYTC:"Synchronized tempo codes", 23 | TALB:"Album/Movie/Show title",TBPM:"BPM (beats per minute)",TCOM:"Composer",TCON:"Content type",TCOP:"Copyright message",TDAT:"Date",TDLY:"Playlist delay",TENC:"Encoded by",TEXT:"Lyricist/Text writer",TFLT:"File type",TIME:"Time",TIT1:"Content group description",TIT2:"Title/songname/content description",TIT3:"Subtitle/Description refinement",TKEY:"Initial key",TLAN:"Language(s)",TLEN:"Length",TMED:"Media type",TOAL:"Original album/movie/show title",TOFN:"Original filename",TOLY:"Original lyricist(s)/text writer(s)", 24 | TOPE:"Original artist(s)/performer(s)",TORY:"Original release year",TOWN:"File owner/licensee",TPE1:"Lead performer(s)/Soloist(s)",TPE2:"Band/orchestra/accompaniment",TPE3:"Conductor/performer refinement",TPE4:"Interpreted, remixed, or otherwise modified by",TPOS:"Part of a set",TPUB:"Publisher",TRCK:"Track number/Position in set",TRDA:"Recording dates",TRSN:"Internet radio station name",TRSO:"Internet radio station owner",TSIZ:"Size",TSRC:"ISRC (international standard recording code)",TSSE:"Software/Hardware and settings used for encoding", 25 | TYER:"Year",TXXX:"User defined text information frame",UFID:"Unique file identifier",USER:"Terms of use",USLT:"Unsychronized lyric/text transcription",WCOM:"Commercial information",WCOP:"Copyright/Legal information",WOAF:"Official audio file webpage",WOAR:"Official artist/performer webpage",WOAS:"Official audio source webpage",WORS:"Official internet radio station homepage",WPAY:"Payment",WPUB:"Publishers official webpage",WXXX:"User defined URL link frame"};var f={title:["TIT2","TT2"],artist:["TPE1", 26 | "TP1"],album:["TALB","TAL"],year:["TYER","TYE"],comment:["COMM","COM"],track:["TRCK","TRK"],genre:["TCON","TCO"],picture:["APIC","PIC"],lyrics:["USLT","ULT"]},c=["title","artist","album","track"];d.o=function(a,b){a.f([0,i(6,a)],b)};d.p=function(a,b){var g=0,h=a.a(g+3);if(h>4)return{version:">2.4"};var e=a.a(g+4),v=a.d(g+5,7),k=a.d(g+5,6),s=a.d(g+5,5),j=i(g+6,a);g+=10;if(k){var o=a.h(g,!0);g+=o+4}var h={version:"2."+h+"."+e,major:h,revision:e,flags:{unsynchronisation:v,extended_header:k,experimental_indicator:s}, 27 | size:j},l;if(v)l={};else{j-=10;for(var v=a,e=b,k={},s=h.major,o=[],n=0,m;m=(e||c)[n];n++)o=o.concat(f[m]||[m]);for(e=o;g2&&(u={message:{Y:n.d(m+8,6),K:n.d(m+8,5),V:n.d(m+8,4)},m:{T:n.d(m+8+1,7),H:n.d(m+8+1,3),J:n.d(m+8+1,2),D:n.d(m+8+1,1),w:n.d(m+8+1,0)}}),m+=t,u&&u.m.w&&(i(m,n),m+=4,r-=4),!u||!u.m.D))l in 28 | d.b?o=d.b[l]:l[0]=="T"&&(o=d.b["T*"]),o=o?o(m,r,n,u):void 0,o={id:l,size:r,description:l in d.frames?d.frames[l]:"Unknown",data:o},l in k?(k[l].id&&(k[l]=[k[l]]),k[l].push(o)):k[l]=o}l=k}for(var w in f)if(f.hasOwnProperty(w)){a:{r=f[w];typeof r=="string"&&(r=[r]);t=0;for(g=void 0;g=r[t];t++)if(g in l){a=l[g].data;break a}a=void 0}a&&(h[w]=a)}for(var x in l)l.hasOwnProperty(x)&&(h[x]=l[x]);return h};g.ID3v2=d})(this);(function(){function g(d){var f;switch(d){case 0:f="iso-8859-1";break;case 1:f="utf-16";break;case 2:f="utf-16be";break;case 3:f="utf-8"}return f}var i=["32x32 pixels 'file icon' (PNG only)","Other file icon","Cover (front)","Cover (back)","Leaflet page","Media (e.g. lable side of CD)","Lead artist/lead performer/soloist","Artist/performer","Conductor","Band/Orchestra","Composer","Lyricist/text writer","Recording Location","During recording","During performance","Movie/video screen capture","A bright coloured fish", 29 | "Illustration","Band/artist logotype","Publisher/Studio logotype"];ID3v2.b.APIC=function(d,f,c,a,b){var b=b||"3",a=d,p=g(c.a(d));switch(b){case "2":var h=c.c(d+1,3);d+=4;break;case "3":case "4":h=c.e(d+1,f-(d-a),p),d+=1+h.g}b=c.a(d,1);b=i[b];p=c.e(d+1,f-(d-a),p);d+=1+p.g;return{format:h.toString(),type:b,description:p.toString(),data:c.n(d,a+f-d)}};ID3v2.b.COMM=function(d,f,c){var a=d,b=g(c.a(d)),i=c.c(d+1,3),h=c.e(d+4,f-4,b);d+=4+h.g;d=c.e(d,a+f-d,b);return{language:i,X:h.toString(),text:d.toString()}}; 30 | ID3v2.b.COM=ID3v2.b.COMM;ID3v2.b.PIC=function(d,f,c,a){return ID3v2.b.APIC(d,f,c,a,"2")};ID3v2.b.PCNT=function(d,f,c){return c.O(d)};ID3v2.b.CNT=ID3v2.b.PCNT;ID3v2.b["T*"]=function(d,f,c){var a=g(c.a(d));return c.e(d+1,f-1,a).toString()};ID3v2.b.TCON=function(){return ID3v2.b["T*"].apply(this,arguments).replace(/^\(\d+\)/,"")};ID3v2.b.TCO=ID3v2.b.TCON;ID3v2.b.USLT=function(d,f,c){var a=d,b=g(c.a(d)),i=c.c(d+1,3),h=c.e(d+4,f-4,b);d+=4+h.g;d=c.e(d,a+f-d,b);return{language:i,I:h.toString(),U:d.toString()}}; 31 | ID3v2.b.ULT=ID3v2.b.USLT})();(function(g){function i(c,a,b,d){var g=c.h(a,!0);if(g==0)d();else{var e=c.c(a+4,4);["moov","udta","meta","ilst"].indexOf(e)>-1?(e=="meta"&&(a+=4),c.f([a+8,a+8+8],function(){i(c,a+8,g-8,d)})):c.f([a+(e in f.l?0:g),a+g+8],function(){i(c,a+g,b,d)})}}function d(c,a,b,g,h){for(var h=h===void 0?"":h+" ",e=b;e-1){k=="meta"&&(e+=4);d(c,a,e+8,i-8,h);break}if(f.l[k]){var s=a.q(e+16+1),j=f.l[k],s=f.types[s];if(k== 32 | "trkn")c[j[0]]=a.a(e+16+11),c.count=a.a(e+16+13);else{var k=e+16+4+4,o=i-16-4-4;switch(s){case "text":c[j[0]]=a.e(k,o,"UTF-8");break;case "uint8":c[j[0]]=a.r(k);break;case "jpeg":case "png":c[j[0]]={m:"image/"+s,data:a.n(k,o)}}}}e+=i}}var f=g.v={};f.types={0:"uint8",1:"text",13:"jpeg",14:"png",21:"uint8"};f.l={"\u00a9alb":["album"],"\u00a9art":["artist"],"\u00a9ART":["artist"],aART:["artist"],"\u00a9day":["year"],"\u00a9nam":["title"],"\u00a9gen":["genre"],trkn:["track"],"\u00a9wrt":["composer"], 33 | "\u00a9too":["encoder"],cprt:["copyright"],covr:["picture"],"\u00a9grp":["grouping"],keyw:["keyword"],"\u00a9lyr":["lyrics"],"\u00a9gen":["genre"]};f.o=function(c,a){c.f([0,7],function(){i(c,0,c.j(),a)})};f.p=function(c){var a={};d(a,c,0,c.j());return a};g.ID4=g.v})(this); 34 | -------------------------------------------------------------------------------- /src/dep/jquery.mb.CSSAnimate.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * ****************************************************************************** 4 | * jquery.mb.components 5 | * file: jquery.mb.CSSAnimate.min.js 6 | * 7 | * Copyright (c) 2001-2014. Matteo Bicocchi (Pupunzi); 8 | * Open lab srl, Firenze - Italy 9 | * email: matbicoc@gmail.com 10 | * site: http://pupunzi.com 11 | * blog: http://pupunzi.open-lab.com 12 | * http://open-lab.com 13 | * 14 | * Licences: MIT, GPL 15 | * http://www.opensource.org/licenses/mit-license.php 16 | * http://www.gnu.org/licenses/gpl.html 17 | * 18 | * last modified: 26/03/14 21.40 19 | * ***************************************************************************** 20 | */ 21 | 22 | jQuery.support.CSStransition=function(){var d=(document.body||document.documentElement).style;return void 0!==d.transition||void 0!==d.WebkitTransition||void 0!==d.MozTransition||void 0!==d.MsTransition||void 0!==d.OTransition}();function uncamel(d){return d.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function setUnit(d,a){return"string"!==typeof d||d.match(/^[\-0-9\.]+jQuery/)?""+d+a:d} 23 | function setFilter(d,a,b){var c=uncamel(a),g=jQuery.mbBrowser.mozilla?"":jQuery.CSS.sfx;d[g+"filter"]=d[g+"filter"]||"";b=setUnit(b>jQuery.CSS.filters[a].max?jQuery.CSS.filters[a].max:b,jQuery.CSS.filters[a].unit);d[g+"filter"]+=c+"("+b+") ";delete d[a]} 24 | jQuery.CSS={name:"mb.CSSAnimate",author:"Matteo Bicocchi",version:"2.0.0",transitionEnd:"transitionEnd",sfx:"",filters:{blur:{min:0,max:100,unit:"px"},brightness:{min:0,max:400,unit:"%"},contrast:{min:0,max:400,unit:"%"},grayscale:{min:0,max:100,unit:"%"},hueRotate:{min:0,max:360,unit:"deg"},invert:{min:0,max:100,unit:"%"},saturate:{min:0,max:400,unit:"%"},sepia:{min:0,max:100,unit:"%"}},normalizeCss:function(d){var a=jQuery.extend(!0,{},d);jQuery.mbBrowser.webkit||jQuery.mbBrowser.opera?jQuery.CSS.sfx= 25 | "-webkit-":jQuery.mbBrowser.mozilla?jQuery.CSS.sfx="-moz-":jQuery.mbBrowser.msie&&(jQuery.CSS.sfx="-ms-");jQuery.CSS.sfx="";for(var b in a){"transform"===b&&(a[jQuery.CSS.sfx+"transform"]=a[b],delete a[b]);"transform-origin"===b&&(a[jQuery.CSS.sfx+"transform-origin"]=d[b],delete a[b]);"filter"!==b||jQuery.mbBrowser.mozilla||(a[jQuery.CSS.sfx+"filter"]=d[b],delete a[b]);"blur"===b&&setFilter(a,"blur",d[b]);"brightness"===b&&setFilter(a,"brightness",d[b]);"contrast"===b&&setFilter(a,"contrast",d[b]); 26 | "grayscale"===b&&setFilter(a,"grayscale",d[b]);"hueRotate"===b&&setFilter(a,"hueRotate",d[b]);"invert"===b&&setFilter(a,"invert",d[b]);"saturate"===b&&setFilter(a,"saturate",d[b]);"sepia"===b&&setFilter(a,"sepia",d[b]);if("x"===b){var c=jQuery.CSS.sfx+"transform";a[c]=a[c]||"";a[c]+=" translateX("+setUnit(d[b],"px")+")";delete a[b]}"y"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" translateY("+setUnit(d[b],"px")+")",delete a[b]);"z"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+= 27 | " translateZ("+setUnit(d[b],"px")+")",delete a[b]);"rotate"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotate("+setUnit(d[b],"deg")+")",delete a[b]);"rotateX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateX("+setUnit(d[b],"deg")+")",delete a[b]);"rotateY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateY("+setUnit(d[b],"deg")+")",delete a[b]);"rotateZ"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" rotateZ("+setUnit(d[b],"deg")+")",delete a[b]); 28 | "scale"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scale("+setUnit(d[b],"")+")",delete a[b]);"scaleX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleX("+setUnit(d[b],"")+")",delete a[b]);"scaleY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleY("+setUnit(d[b],"")+")",delete a[b]);"scaleZ"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" scaleZ("+setUnit(d[b],"")+")",delete a[b]);"skew"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skew("+ 29 | setUnit(d[b],"deg")+")",delete a[b]);"skewX"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skewX("+setUnit(d[b],"deg")+")",delete a[b]);"skewY"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" skewY("+setUnit(d[b],"deg")+")",delete a[b]);"perspective"===b&&(c=jQuery.CSS.sfx+"transform",a[c]=a[c]||"",a[c]+=" perspective("+setUnit(d[b],"px")+")",delete a[b])}return a},getProp:function(d){var a=[],b;for(b in d)0>a.indexOf(b)&&a.push(uncamel(b));return a.join(",")},animate:function(d, 30 | a,b,c,g){return this.each(function(){function n(){e.called=!0;e.CSSAIsRunning=!1;h.off(jQuery.CSS.transitionEnd+"."+e.id);clearTimeout(e.timeout);h.css(jQuery.CSS.sfx+"transition","");"function"==typeof g&&g.apply(e);"function"==typeof e.CSSqueue&&(e.CSSqueue(),e.CSSqueue=null)}var e=this,h=jQuery(this);e.id=e.id||"CSSA_"+(new Date).getTime();var k=k||{type:"noEvent"};if(e.CSSAIsRunning&&e.eventType==k.type&&!jQuery.mbBrowser.msie&&9>=jQuery.mbBrowser.version)e.CSSqueue=function(){h.CSSAnimate(d, 31 | a,b,c,g)};else if(e.CSSqueue=null,e.eventType=k.type,0!==h.length&&d){d=jQuery.normalizeCss(d);e.CSSAIsRunning=!0;"function"==typeof a&&(g=a,a=jQuery.fx.speeds._default);"function"==typeof b&&(c=b,b=0);"string"==typeof b&&(g=b,b=0);"function"==typeof c&&(g=c,c="cubic-bezier(0.65,0.03,0.36,0.72)");if("string"==typeof a)for(var l in jQuery.fx.speeds)if(a==l){a=jQuery.fx.speeds[l];break}else a=jQuery.fx.speeds._default;a||(a=jQuery.fx.speeds._default);"string"===typeof g&&(c=g,g=null);if(jQuery.support.CSStransition){var f= 32 | {"default":"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)",easeOutCubic:"cubic-bezier(.215,.61,.355,1)",easeInOutCubic:"cubic-bezier(.645,.045,.355,1)",easeInCirc:"cubic-bezier(.6,.04,.98,.335)",easeOutCirc:"cubic-bezier(.075,.82,.165,1)",easeInOutCirc:"cubic-bezier(.785,.135,.15,.86)",easeInExpo:"cubic-bezier(.95,.05,.795,.035)",easeOutExpo:"cubic-bezier(.19,1,.22,1)",easeInOutExpo:"cubic-bezier(1,0,0,1)",easeInQuad:"cubic-bezier(.55,.085,.68,.53)",easeOutQuad:"cubic-bezier(.25,.46,.45,.94)", 33 | easeInOutQuad:"cubic-bezier(.455,.03,.515,.955)",easeInQuart:"cubic-bezier(.895,.03,.685,.22)",easeOutQuart:"cubic-bezier(.165,.84,.44,1)",easeInOutQuart:"cubic-bezier(.77,0,.175,1)",easeInQuint:"cubic-bezier(.755,.05,.855,.06)",easeOutQuint:"cubic-bezier(.23,1,.32,1)",easeInOutQuint:"cubic-bezier(.86,0,.07,1)",easeInSine:"cubic-bezier(.47,0,.745,.715)",easeOutSine:"cubic-bezier(.39,.575,.565,1)",easeInOutSine:"cubic-bezier(.445,.05,.55,.95)",easeInBack:"cubic-bezier(.6,-.28,.735,.045)",easeOutBack:"cubic-bezier(.175, .885,.32,1.275)", 34 | easeInOutBack:"cubic-bezier(.68,-.55,.265,1.55)"};f[c]&&(c=f[c]);h.off(jQuery.CSS.transitionEnd+"."+e.id);f=jQuery.CSS.getProp(d);var m={};jQuery.extend(m,d);m[jQuery.CSS.sfx+"transition-property"]=f;m[jQuery.CSS.sfx+"transition-duration"]=a+"ms";m[jQuery.CSS.sfx+"transition-delay"]=b+"ms";m[jQuery.CSS.sfx+"transition-timing-function"]=c;setTimeout(function(){h.one(jQuery.CSS.transitionEnd+"."+e.id,n);h.css(m)},1);e.timeout=setTimeout(function(){e.called||!g?(e.called=!1,e.CSSAIsRunning=!1):(h.css(jQuery.CSS.sfx+ 35 | "transition",""),g.apply(e),e.CSSAIsRunning=!1,"function"==typeof e.CSSqueue&&(e.CSSqueue(),e.CSSqueue=null))},a+b+10)}else{for(f in d)"transform"===f&&delete d[f],"filter"===f&&delete d[f],"transform-origin"===f&&delete d[f],"auto"===d[f]&&delete d[f],"x"===f&&(k=d[f],l="left",d[l]=k,delete d[f]),"y"===f&&(k=d[f],l="top",d[l]=k,delete d[f]),"-ms-transform"!==f&&"-ms-filter"!==f||delete d[f];h.delay(b).animate(d,a,g)}}})}};jQuery.fn.CSSAnimate=jQuery.CSS.animate;jQuery.normalizeCss=jQuery.CSS.normalizeCss; 36 | jQuery.fn.css3=function(d){return this.each(function(){var a=jQuery(this),b=jQuery.normalizeCss(d);a.css(b)})}; 37 | -------------------------------------------------------------------------------- /src/dep/jquery.mbBrowser.min.js: -------------------------------------------------------------------------------- 1 | /*___________________________________________________________________________________________________________________________________________________ 2 | _ jquery.mb.components _ 3 | _ _ 4 | _ file: jquery.mbBrowser.min.js _ 5 | _ last modified: 1/23/21 4:18 PM _ 6 | _ _ 7 | _ Open Lab s.r.l., Florence - Italy _ 8 | _ _ 9 | _ email: matteo@open-lab.com _ 10 | _ site: http://pupunzi.com _ 11 | _ http://open-lab.com _ 12 | _ blog: http://pupunzi.open-lab.com _ 13 | _ Q&A: http://jquery.pupunzi.com _ 14 | _ _ 15 | _ Licences: MIT, GPL _ 16 | _ http://www.opensource.org/licenses/mit-license.php _ 17 | _ http://www.gnu.org/licenses/gpl.html _ 18 | _ _ 19 | _ Copyright (c) 2001-2021. Matteo Bicocchi (Pupunzi); _ 20 | ___________________________________________________________________________________________________________________________________________________*/ 21 | 22 | var nAgt=navigator.userAgent;jQuery.mbBrowser={};jQuery.mbBrowser.mozilla=!1;jQuery.mbBrowser.webkit=!1;jQuery.mbBrowser.opera=!1;jQuery.mbBrowser.safari=!1;jQuery.mbBrowser.chrome=!1;jQuery.mbBrowser.androidStock=!1;jQuery.mbBrowser.msie=!1;jQuery.mbBrowser.edge=!1;jQuery.mbBrowser.ua=nAgt;function isTouchSupported(){var a=nAgt.msMaxTouchPoints,e="ontouchstart"in document.createElement("div");return a||e?!0:!1} 23 | var getOS=function(){var a={version:"Unknown version",name:"Unknown OS"};-1!=navigator.appVersion.indexOf("Win")&&(a.name="Windows");-1!=navigator.appVersion.indexOf("Mac")&&0>navigator.appVersion.indexOf("Mobile")&&(a.name="Mac");-1!=navigator.appVersion.indexOf("Linux")&&(a.name="Linux");/Mac OS X/.test(nAgt)&&!/Mobile/.test(nAgt)&&(a.version=/Mac OS X ([\._\d]+)/.exec(nAgt)[1],a.version=a.version.replace(/_/g,".").substring(0,5));/Windows/.test(nAgt)&&(a.version="Unknown.Unknown");/Windows NT 5.1/.test(nAgt)&& 24 | (a.version="5.1");/Windows NT 6.0/.test(nAgt)&&(a.version="6.0");/Windows NT 6.1/.test(nAgt)&&(a.version="6.1");/Windows NT 6.2/.test(nAgt)&&(a.version="6.2");/Windows NT 10.0/.test(nAgt)&&(a.version="10.0");/Linux/.test(nAgt)&&/Linux/.test(nAgt)&&(a.version="Unknown.Unknown");a.name=a.name.toLowerCase();a.major_version="Unknown";a.minor_version="Unknown";"Unknown.Unknown"!=a.version&&(a.major_version=parseFloat(a.version.split(".")[0]),a.minor_version=parseFloat(a.version.split(".")[1]));return a}; 25 | jQuery.mbBrowser.os=getOS();jQuery.mbBrowser.hasTouch=isTouchSupported();jQuery.mbBrowser.name=navigator.appName;jQuery.mbBrowser.fullVersion=""+parseFloat(navigator.appVersion);jQuery.mbBrowser.majorVersion=parseInt(navigator.appVersion,10);var nameOffset,verOffset,ix; 26 | if(-1!=(verOffset=nAgt.indexOf("Opera")))jQuery.mbBrowser.opera=!0,jQuery.mbBrowser.name="Opera",jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+6),-1!=(verOffset=nAgt.indexOf("Version"))&&(jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+8));else if(-1!=(verOffset=nAgt.indexOf("OPR")))jQuery.mbBrowser.opera=!0,jQuery.mbBrowser.name="Opera",jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+4);else if(-1!=(verOffset=nAgt.indexOf("MSIE")))jQuery.mbBrowser.msie=!0,jQuery.mbBrowser.name= 27 | "Microsoft Internet Explorer",jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+5);else if(-1!=nAgt.indexOf("Trident")){jQuery.mbBrowser.msie=!0;jQuery.mbBrowser.name="Microsoft Internet Explorer";var start=nAgt.indexOf("rv:")+3,end=start+4;jQuery.mbBrowser.fullVersion=nAgt.substring(start,end)}else-1!=(verOffset=nAgt.indexOf("Edge"))?(jQuery.mbBrowser.edge=!0,jQuery.mbBrowser.name="Microsoft Edge",jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+5)):-1!=(verOffset=nAgt.indexOf("Chrome"))? 28 | (jQuery.mbBrowser.webkit=!0,jQuery.mbBrowser.chrome=!0,jQuery.mbBrowser.name="Chrome",jQuery.mbBrowser.fullVersion=nAgt.substring(verOffset+7)):-1parseInt(d[b]))return 1;if(d[b]&&!c[b]&&0a.indexOf("{")&&(a="{"+a+"}");a=eval("("+a+")");c.data(b,d.single,a);return a}}});c.fn.metadata=function(b){return c.metadata.get(this[0],b)}})(jQuery); 10 | 11 | -------------------------------------------------------------------------------- /src/index.tmpl: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | jquery.mb.miniAudioPlayer 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 106 | 107 | 128 | 129 | 130 | 131 |
132 |
133 |
134 |
135 |
136 |

mb.miniAudioPlayer.demo

137 |
138 | This is a GUI implementation of Happyworm jPlayer plugin, an HTML5 audio engine, developed on jQuery framework, that let you listen mp3 and ogg file over the html5 audio tag where supported or using an invisible flash player where not supported. 139 | For more informations about html5 browsers' support go to jPlayer documentation site. 140 |
141 |
142 |

Customize the player skin

143 |
144 | Pietro Bicocchi - Allegro 2013 145 | 146 | 147 |
148 | param -> all features - loop = true 149 |
150 | Erik Satie - La Belle Excentrique (mp3) 151 | param -> showTime:false 152 |
153 | unreal_dm - Blue Circles (mp3) 154 | 155 | param -> showRew:false 156 |
157 | unreal_dm - Oh Dear Mr Williams - Tango ? (mp3) 158 | 159 | param -> showRew:false, showTime:false 160 |
161 | urmymuse - colourbox (mp3) 162 | 163 |
164 |
change track: 165 |
166 | 167 | 168 |
169 |
170 |
171 | Cro Magnon Man 172 | param -> uses m4a audio 173 |
174 | Jazz radio stream 175 | This example get the stream of Radionomy Jazz channel 176 |
177 | This is a gray player: copperhead - Chillin with Jeris (mp3) 178 | and it is inline 179 | 180 |
181 |
182 | jquery.mb.miniPlayer is a GUI implementation of the jquery.jPlayer plug-in realized by © Happyworm LTD. (many thanks to Mark Boas) 183 |
184 | 185 | 186 | 187 | --------------------------------------------------------------------------------