Any reason why it is different on the Samsung TV app and a phone and fire stick? The TV app is really lacking the epg interface any way to turn it on??http://imgur.com/a/NuB9SYL
I'm trying to use an M3U IPTV provider on my Android TV with OpenVPN. I confirmed that OpenVPN works (both with the OpenVPN app, and the provider's app), and that I can use an app to connect to the IPTV provider. If I connect directly, it's fine. If I connect through the VPN, the video plays but stutters and buffers. Given I use a VPN elsewhere on my network and can get 15+ mb/sec download speeds on torrents, I don't think the issue is the VPN connection. I think the issue is the TV running the VPN -- that my TV's CPU can't keep up with the encryption fast enough.
Is there some method for using IPTV on my android TV, and have the VPN connection terminated at my home server?
EDIT In case there's someone from the future that looks into how to do this, here's a quick and dirty guide of how I resolved this. You need a separate home server to run Plex on, and then you use Plex with your Smart TV normally. Read all of this before starting
5 Parts:
docker. You need to have docker installed on your home server. This is a prereq for the rest of this
dperson/openvpn You use this openvpn docker container to connect to your VPN
telly, an IPTV proxy for Plex
dperson/nginx A docker container that will proxy the telly proxy (yo dawg) for you
plex, including Plex Pass
Step 1 Configure dperson/openvpn to use your VPN client. Lots of instructions linked at the project link above
Step 2 Configure telly in docker. Here's their docker how to which is easy enough to follow. You're going to configure your URLs for your IPTV provider here.
Step 3 Configure the telly docker container to connect through the openvpn container instead of directly. If you're worried about your IPTV provider logging your real IP at all, do this as part of the telly setup in Step 2
Here's the configuration presented in telly's docker config walkthrough:
docker run -d \
--name='telly-test' \
-e TZ="America/Chicago" \
-p '6077:6077/tcp' \
-v ${MY_DIR}/telly.config.toml:/etc/telly/telly.config.toml \
--restart unless-stopped \
tellytv/telly:dev-ffmpeg
We're going to change 1 line from that:
docker run -d \
--name='telly-test' \
-e TZ="America/Chicago" \
--net='container:vpn' \
-v ${MY_DIR}/telly.config.toml:/etc/telly/telly.config.toml \
--restart unless-stopped \
tellytv/telly:dev-ffmpeg
The only thing that needs to change is 1) removing the 6077 port forward from the container, and 2) setting the networking for the telly container to use the vpn container (whatever container name you gave your openvpn container). The good news is that this means all of the telly container's networking will go over the vpn instead of your local network. The bad news is we can't use the normal port forwarding. Step 4 solves that.
Step 4 Use the dperson/nginx docker container as a proxy for the telly container. Here's an example config for that:
docker run \
--name=nginx-telly \
--rm \
-p 6077:80 \
--link vpn:telly-test \
-e TZ="America/New_York" \
dperson/nginx \
-w "http://telly-test:6077;/"
This will run the nginx proxy on 6077 on the server (where all the rest of the telly guides expect it to be)
Step 5 Connect Telly to plex
Home that helps. If you run into a problem I can maybe help if you leave a comment, but you're probably best off soldiering through it. But remember I didn't ask the question and solve it myself without giving a solution. Good luck.
Hello, i can't make works EPG in my channel lists.
In particular, Epg works on all spanish, germans, uk channels , but not italian.
This is my sample string:
#EXTINF:-1 tvg-ID="" tvg-name="IT: Channel Name" tvg-logo="" group-title="EU italian",Channel Name
http://www.something....
Is tvg-name the name i've to match with egp ? Or is tvg-id ?
Thanks