├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── app ├── css │ ├── chrome.custom.scrollbar.css │ ├── style.css │ ├── themes │ │ ├── cobalt.css │ │ ├── fullmetal.css │ │ ├── hellokitty.css │ │ └── phresh.css │ └── w3.css ├── font-awesome-4.7.0 │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── img │ ├── phreshplayer-icon (32 ..ico).zip │ ├── phreshplayer-icon-striped-black.png │ ├── phreshplayer-icon-striped-darkgreen.png │ ├── phreshplayer-icon-striped-lightgreen.png │ ├── phreshplayer-icon-striped-white.png │ ├── phreshplayer-icon.ico │ ├── phreshplayer-icon.png │ ├── phreshplayer-icon.svg │ ├── phreshplayer-icon_old.ico │ ├── phreshplayer-icon_old.png │ ├── phreshplayer-icon_old.psd │ ├── phreshplayer-logo_horizontal-full.png │ ├── phreshplayer-logo_horizontal-striped-black.png │ ├── phreshplayer-logo_horizontal-striped-green.png │ ├── phreshplayer-logo_horizontal-striped-white.png │ ├── phreshplayer-logo_old.png │ ├── phreshplayer-logo_old.psd │ ├── phreshplayer-logo_vertical-full.png │ ├── phreshplayer-logo_vertical-striped-black.png │ ├── phreshplayer-logo_vertical-striped-green.png │ └── phreshplayer-logo_vertical-striped-white.png ├── index.html └── js │ ├── player.js │ ├── playlist.js │ ├── plugins.js │ └── w3.js ├── locales ├── de.json ├── en.json ├── fr.json ├── hu.json └── i18n.js ├── main.js ├── package.json └── screenshots ├── 1_player-only.jpg ├── 2_player+controlbox+tooltip+toast.jpg ├── 3_play-video.jpg ├── 4_subtitles.jpg ├── 5_rightclickmenu.jpg ├── 6_convert-while-playing.jpg ├── 7_still-converting-after-close-modal.jpg └── 8_after-conversion-play-video.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/README.md -------------------------------------------------------------------------------- /app/css/chrome.custom.scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/chrome.custom.scrollbar.css -------------------------------------------------------------------------------- /app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/style.css -------------------------------------------------------------------------------- /app/css/themes/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/themes/cobalt.css -------------------------------------------------------------------------------- /app/css/themes/fullmetal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/themes/fullmetal.css -------------------------------------------------------------------------------- /app/css/themes/hellokitty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/themes/hellokitty.css -------------------------------------------------------------------------------- /app/css/themes/phresh.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/themes/phresh.css -------------------------------------------------------------------------------- /app/css/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/css/w3.css -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/img/phreshplayer-icon (32 ..ico).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon (32 ..ico).zip -------------------------------------------------------------------------------- /app/img/phreshplayer-icon-striped-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon-striped-black.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon-striped-darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon-striped-darkgreen.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon-striped-lightgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon-striped-lightgreen.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon-striped-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon-striped-white.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon.ico -------------------------------------------------------------------------------- /app/img/phreshplayer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon.svg -------------------------------------------------------------------------------- /app/img/phreshplayer-icon_old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon_old.ico -------------------------------------------------------------------------------- /app/img/phreshplayer-icon_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon_old.png -------------------------------------------------------------------------------- /app/img/phreshplayer-icon_old.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-icon_old.psd -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_horizontal-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_horizontal-full.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_horizontal-striped-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_horizontal-striped-black.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_horizontal-striped-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_horizontal-striped-green.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_horizontal-striped-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_horizontal-striped-white.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_old.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_old.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_old.psd -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_vertical-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_vertical-full.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_vertical-striped-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_vertical-striped-black.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_vertical-striped-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_vertical-striped-green.png -------------------------------------------------------------------------------- /app/img/phreshplayer-logo_vertical-striped-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/img/phreshplayer-logo_vertical-striped-white.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/js/player.js -------------------------------------------------------------------------------- /app/js/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/js/playlist.js -------------------------------------------------------------------------------- /app/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/js/plugins.js -------------------------------------------------------------------------------- /app/js/w3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/app/js/w3.js -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/locales/fr.json -------------------------------------------------------------------------------- /locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/locales/hu.json -------------------------------------------------------------------------------- /locales/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/locales/i18n.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1_player-only.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/1_player-only.jpg -------------------------------------------------------------------------------- /screenshots/2_player+controlbox+tooltip+toast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/2_player+controlbox+tooltip+toast.jpg -------------------------------------------------------------------------------- /screenshots/3_play-video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/3_play-video.jpg -------------------------------------------------------------------------------- /screenshots/4_subtitles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/4_subtitles.jpg -------------------------------------------------------------------------------- /screenshots/5_rightclickmenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/5_rightclickmenu.jpg -------------------------------------------------------------------------------- /screenshots/6_convert-while-playing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/6_convert-while-playing.jpg -------------------------------------------------------------------------------- /screenshots/7_still-converting-after-close-modal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/7_still-converting-after-close-modal.jpg -------------------------------------------------------------------------------- /screenshots/8_after-conversion-play-video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phreshhh/PhreshPlayer/HEAD/screenshots/8_after-conversion-play-video.jpg --------------------------------------------------------------------------------