├── .eslintrc.js ├── .gitignore ├── .scrutinizer.yml ├── 3rdparty └── getid3 │ ├── getid3.lib.php │ ├── getid3.php │ ├── module.audio-video.asf.php │ ├── module.audio-video.bink.php │ ├── module.audio-video.flv.php │ ├── module.audio-video.matroska.php │ ├── module.audio-video.mpeg.php │ ├── module.audio-video.nsv.php │ ├── module.audio-video.quicktime.php │ ├── module.audio-video.real.php │ ├── module.audio-video.riff.php │ ├── module.audio-video.swf.php │ ├── module.audio-video.ts.php │ ├── module.audio.aa.php │ ├── module.audio.aac.php │ ├── module.audio.ac3.php │ ├── module.audio.amr.php │ ├── module.audio.au.php │ ├── module.audio.avr.php │ ├── module.audio.bonk.php │ ├── module.audio.dsf.php │ ├── module.audio.dss.php │ ├── module.audio.dts.php │ ├── module.audio.flac.php │ ├── module.audio.la.php │ ├── module.audio.lpac.php │ ├── module.audio.midi.php │ ├── module.audio.mod.php │ ├── module.audio.monkey.php │ ├── module.audio.mp3.php │ ├── module.audio.mpc.php │ ├── module.audio.ogg.php │ ├── module.audio.optimfrog.php │ ├── module.audio.rkau.php │ ├── module.audio.shorten.php │ ├── module.audio.tta.php │ ├── module.audio.voc.php │ ├── module.audio.vqf.php │ ├── module.audio.wavpack.php │ ├── module.tag.apetag.php │ ├── module.tag.id3v1.php │ ├── module.tag.id3v2.php │ ├── module.tag.lyrics3.php │ ├── module.tag.xmp.php │ ├── write.apetag.php │ ├── write.id3v1.php │ ├── write.id3v2.php │ ├── write.lyrics3.php │ ├── write.metaflac.php │ ├── write.php │ ├── write.real.php │ └── write.vorbiscomment.php ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── _config.yml ├── appinfo ├── app.php ├── info.xml └── routes.php ├── composer.json ├── css ├── editor.css ├── editor.scss └── jquery.Jcrop.css ├── js ├── editor.js └── jquery.Jcrop.js ├── l10n ├── de.js ├── de.json ├── de_DE.js └── de_DE.json ├── lib ├── AppInfo │ └── Application.php └── Controller │ ├── CoverController.php │ ├── DbController.php │ └── EditorController.php ├── screenshots └── audioplayer_editor_logo.png └── templates └── part.cropphoto.php /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /3rdparty/getid3/getid3.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/getid3.lib.php -------------------------------------------------------------------------------- /3rdparty/getid3/getid3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/getid3.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.asf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.asf.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.bink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.bink.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.flv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.flv.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.matroska.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.matroska.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.mpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.mpeg.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.nsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.nsv.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.quicktime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.quicktime.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.real.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.riff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.riff.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.swf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.swf.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio-video.ts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio-video.ts.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.aa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.aa.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.aac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.aac.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.ac3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.ac3.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.amr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.amr.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.au.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.au.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.avr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.avr.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.bonk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.bonk.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.dsf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.dsf.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.dss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.dss.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.dts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.dts.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.flac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.flac.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.la.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.la.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.lpac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.lpac.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.midi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.midi.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.mod.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.monkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.monkey.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.mp3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.mp3.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.mpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.mpc.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.ogg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.ogg.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.optimfrog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.optimfrog.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.rkau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.rkau.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.shorten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.shorten.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.tta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.tta.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.voc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.voc.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.vqf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.vqf.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.audio.wavpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.audio.wavpack.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.tag.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.tag.apetag.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.tag.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.tag.id3v1.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.tag.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.tag.id3v2.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.tag.lyrics3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.tag.lyrics3.php -------------------------------------------------------------------------------- /3rdparty/getid3/module.tag.xmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/module.tag.xmp.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.apetag.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.id3v1.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.id3v2.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.lyrics3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.lyrics3.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.metaflac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.metaflac.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.real.php -------------------------------------------------------------------------------- /3rdparty/getid3/write.vorbiscomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/3rdparty/getid3/write.vorbiscomment.php -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/_config.yml -------------------------------------------------------------------------------- /appinfo/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/appinfo/app.php -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/composer.json -------------------------------------------------------------------------------- /css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/css/editor.css -------------------------------------------------------------------------------- /css/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/css/editor.scss -------------------------------------------------------------------------------- /css/jquery.Jcrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/css/jquery.Jcrop.css -------------------------------------------------------------------------------- /js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/js/editor.js -------------------------------------------------------------------------------- /js/jquery.Jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/js/jquery.Jcrop.js -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Controller/CoverController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/lib/Controller/CoverController.php -------------------------------------------------------------------------------- /lib/Controller/DbController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/lib/Controller/DbController.php -------------------------------------------------------------------------------- /lib/Controller/EditorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/lib/Controller/EditorController.php -------------------------------------------------------------------------------- /screenshots/audioplayer_editor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/screenshots/audioplayer_editor_logo.png -------------------------------------------------------------------------------- /templates/part.cropphoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rello/audioplayer_editor/HEAD/templates/part.cropphoto.php --------------------------------------------------------------------------------