├── .gitignore ├── README.md ├── example ├── example.json ├── pic.jpeg └── source.json ├── help ├── TMDB.md └── uzSync.md ├── html ├── help.html ├── help.md ├── index.html ├── panNav.html ├── policy.html └── store │ ├── config.js │ ├── index.html │ ├── main.js │ └── styles.css ├── js ├── panTools.json └── recommendHome.json ├── update.json ├── video_sources_default.json └── video_sources_sese.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/README.md -------------------------------------------------------------------------------- /example/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/example/example.json -------------------------------------------------------------------------------- /example/pic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/example/pic.jpeg -------------------------------------------------------------------------------- /example/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/example/source.json -------------------------------------------------------------------------------- /help/TMDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/help/TMDB.md -------------------------------------------------------------------------------- /help/uzSync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/help/uzSync.md -------------------------------------------------------------------------------- /html/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/help.html -------------------------------------------------------------------------------- /html/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/help.md -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/index.html -------------------------------------------------------------------------------- /html/panNav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/panNav.html -------------------------------------------------------------------------------- /html/policy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/store/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/store/config.js -------------------------------------------------------------------------------- /html/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/store/index.html -------------------------------------------------------------------------------- /html/store/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/store/main.js -------------------------------------------------------------------------------- /html/store/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/html/store/styles.css -------------------------------------------------------------------------------- /js/panTools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/js/panTools.json -------------------------------------------------------------------------------- /js/recommendHome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/js/recommendHome.json -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/update.json -------------------------------------------------------------------------------- /video_sources_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/video_sources_default.json -------------------------------------------------------------------------------- /video_sources_sese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YYDS678/uzVideo/HEAD/video_sources_sese.json --------------------------------------------------------------------------------