# tbs-iptv-android **Repository Path**: turboshow/tbs-iptv-android ## Basic Information - **Project Name**: tbs-iptv-android - **Description**: 土拨鼠IPTV,支持udpxy - **Primary Language**: Kotlin - **License**: LGPL-2.1 - **Default Branch**: master - **Homepage**: http://www.turboshow.cn - **GVP Project**: No ## Statistics - **Stars**: 19 - **Forks**: 8 - **Created**: 2019-07-30 - **Last Updated**: 2024-05-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### [中文](README-zh.md) | English # TBS IPTV player for Android TV, with udpxy support. [official site](http://www.turboshow.cn) (Chinese) ![](https://images.gitee.com/uploads/images/2019/0727/201458_7b480937_82552.png) ## IPTV Configuration ### web interface `http://{yourAppHostIp}:1213` ### web api #### Import TV channels `POST http://{yourAppHostIp}:1213/api/settings/playlist` body ``` [ { "title": "Channel 1", "url": "rtp://239.0.0.1:1234" }, { "title": "Channel 2", "url": "rtp://239.0.0.2:1234" }, ... ] ``` #### udpxy udpxy can be enabled to convert RTP to HTTP. `POST http://{yourAppHostIp}:1213/api/settings/udpxy` body ``` { "addr": "192.168.1.254:1234" } ``` To disable udpxy, POST ``` { "addr": null } ```