├── .DS_Store ├── .idea ├── .gitignore ├── ShellTV.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── images ├── broadcast.png ├── config.png ├── config_fast.png ├── config_pc.png ├── detail.png ├── disable.png ├── donation.png ├── drive.png ├── fastSearch.png ├── folder.jpg ├── home.png ├── home_fast.png ├── iptv.png ├── new_local_file.png ├── personage.png ├── rights.jpg ├── search.png ├── setting_fast.png ├── shelltv.png ├── shelltv_icon.png ├── shelltv_white.png ├── source.png ├── source_select.png └── upload.jpg ├── source.md ├── tvbox源配置文件基本语法.md ├── 源配置样例.json ├── 直播配置传统格式.m3u └── 直播配置简化格式.m3u /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ShellTV.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/.idea/ShellTV.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/README.md -------------------------------------------------------------------------------- /images/broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/broadcast.png -------------------------------------------------------------------------------- /images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/config.png -------------------------------------------------------------------------------- /images/config_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/config_fast.png -------------------------------------------------------------------------------- /images/config_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/config_pc.png -------------------------------------------------------------------------------- /images/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/detail.png -------------------------------------------------------------------------------- /images/disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/disable.png -------------------------------------------------------------------------------- /images/donation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/donation.png -------------------------------------------------------------------------------- /images/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/drive.png -------------------------------------------------------------------------------- /images/fastSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/fastSearch.png -------------------------------------------------------------------------------- /images/folder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/folder.jpg -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/home.png -------------------------------------------------------------------------------- /images/home_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/home_fast.png -------------------------------------------------------------------------------- /images/iptv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/iptv.png -------------------------------------------------------------------------------- /images/new_local_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/new_local_file.png -------------------------------------------------------------------------------- /images/personage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/personage.png -------------------------------------------------------------------------------- /images/rights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/rights.jpg -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/search.png -------------------------------------------------------------------------------- /images/setting_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/setting_fast.png -------------------------------------------------------------------------------- /images/shelltv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/shelltv.png -------------------------------------------------------------------------------- /images/shelltv_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/shelltv_icon.png -------------------------------------------------------------------------------- /images/shelltv_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/shelltv_white.png -------------------------------------------------------------------------------- /images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/source.png -------------------------------------------------------------------------------- /images/source_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/source_select.png -------------------------------------------------------------------------------- /images/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/images/upload.jpg -------------------------------------------------------------------------------- /source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/source.md -------------------------------------------------------------------------------- /tvbox源配置文件基本语法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/tvbox源配置文件基本语法.md -------------------------------------------------------------------------------- /源配置样例.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/源配置样例.json -------------------------------------------------------------------------------- /直播配置传统格式.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/直播配置传统格式.m3u -------------------------------------------------------------------------------- /直播配置简化格式.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShellTV/ShellTV/HEAD/直播配置简化格式.m3u --------------------------------------------------------------------------------