initial commit

This commit is contained in:
Tilman Kranz 2024-09-21 16:05:22 +02:00
commit 5f95d9cef6
55 changed files with 12483 additions and 0 deletions

34
src/build.sh Normal file
View file

@ -0,0 +1,34 @@
#!/bin/sh
# MyPlayer - Copyright 2014 tilt@linuxfoo.de GPLv3
# Build Script; recompiles the MyPlayer JavaScript from source.
cd $(dirname $0)
echo '/*
jQuery
Copyright 2014 jQuery Foundation and other contributors
http://jquery.com/
MediaElement.js
Copyright 2010-2013, John Dyer (http://j.hn)
MediaElement Playlist Feature (plugin) -
Andrew Berezovsky <andrew.berezovsky@gmail.com>
and Junaid Qadir Baloch <shekhanzai.baloch@gmail.com>
JavaScript-ID3-Reader
Copyright (c) 2008 Jacob Seidelin, http://blog.nihilogic.dk/ BSD License
Copyright (c) 2009 Opera Software ASA BSD License
Copyright (c) 2010 António Afonso BSD License
Copyright (c) 2010 Joshua Kifer BSD License
MyPlayer
Copyright (c) 2014 tilt@linuxfoo.de MIT License
*/' > ../js/myplayer.min.js
# https://developers.google.com/closure/compiler/
java \
-jar /usr/local/lib/closure-compiler/compiler.jar \
--js mediaelement-and-player.min.js \
--js mep-feature-playlist.js \
--js id3-minimized.js \
--js player.js \
>> ../js/myplayer.min.js
echo "Done: Javascript source has compiled into ../js/myplayer.min.js"