Search the Community
Showing results for tags 'video issues'.
-
I just bought a Fire 7 (gen 7) Amazon tablet over black Friday and went to setup Emby on it. I ended up install the Play Store so I could install Emby (v 3.0.21). When I try content on my home network everything works perfect but when I try to play the same content out side of my home network I get "Playback Error No compatible streams are currently available. Please try again later or contact your system administrator for details." Also when I select "Got It" on this the app keeps trying to connect and constantly displaying the same error message over and over. This will not stop until I close the app. If I open Emby in the Silk web browser video plays with no problem when outside of the network. I have several fire tv sticks that use the emby tv app without issues outside of the network. My phone using the android Emby app also can play video with not issue. I do have the Emby server running behind a proxy for https but as I mentioned it works fine with everything else. nginx server config for emby server { server_name DOMAINNAME; location / { proxy_pass http://192.168.11.51:8096/; proxy_set_header Host X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host warded-Ssl $host:$server_port; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_set_header X-Forwarded-Protocol $scheme; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } listen [::]:8096 ssl ipv6only=on; # managed by Certbot listen 8096 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/DOMAINNAME/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/DOMAINNAME/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot client_max_body_size 10G; fastcgi_buffers 64 4k; } Is there any reason that the android app will not work on my Fire Table outside of my network?