Cast / PlayOn nvidia shield - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Cast / PlayOn nvidia shield (/t-cast-playon-nvidia-shield) |
Cast / PlayOn nvidia shield - jellyfin9r - 2025-02-09 hello guys, i recently found out it's possible to cast / playon media to other devices. my setup is pretty simple, i'm running jellyfin on docker in my internal network. 1x Android (Google Pixel) 1x iOS 1x Android TV (nvidia shield) I want to use my pixel and jellyfin app to cast / playon my nvidia shield. But my nvidia shield is not listed as device to cast / playon. Can you help me with my configuration? Thanks in advance RE: Cast / PlayOn nvidia shield - TheDreadPirate - 2025-02-10 What network mode is the Jellyfin container using? Host networking? Bridge networking? Also why casting instead of the native Android TV app? RE: Cast / PlayOn nvidia shield - jellyfin9r - 2025-02-10 (Yesterday, 02:55 PM)TheDreadPirate Wrote: What network mode is the Jellyfin container using? Host networking? Bridge networking? Thanks for your reply. It's operating on bridge networking. We also use the native app which works great. Sometimes we'd like to cast music from our smartphone directly to the shield. RE: Cast / PlayOn nvidia shield - TheDreadPirate - 2025-02-10 How is the container setup? What ports are you publishing? Can you share your docker compose? RE: Cast / PlayOn nvidia shield - jellyfin9r - 2025-02-11 (Yesterday, 09:45 PM)TheDreadPirate Wrote: How is the container setup? What ports are you publishing? Can you share your docker compose? services: jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=${jellyfin_puid} - PGID=${jellyfin_pgid} - TZ=${TZ} volumes: - ${APPDATA}/jellyfin/libraryconfig - ${APPDATA}/jellyfin/cachecache - ${FILME}Filme - ${HOERBUECHER}Hoerbuecher - ${MUSIK}Musik - ${SERIEN}Serien ports: - 8096:8096 - 8920:8920 restart: unless-stopped RE: Cast / PlayOn nvidia shield - TheDreadPirate - 2025-02-11 For testing, comment out the "ports" section and add "network_mode: host". Restart the container and try to cast. |