Trying to build a custom channel for local WeatherNation on Pluto. I can browse and create a channel but it needs text characters entered. F to go to fullscreeen and M to unmute audio. I can create the channel in Channels but can't eliminate the guide on the bottom of the screen. It doesn't seem the Orlando WeatherNation is on any of the Pluto sources. Below is the working stream.
Are you using Chrome Capture or how are you trying to integrate it?
That's not how Custom M3U channels work.
You're viewing the Pluto website in a browser.
Instead of using nocordz.xyz
use joagomez's Pluto for Channels docker and environment variable PLUTO_CODE=local
That works for me to get WeatherNation Sacramento (in Sacramento).
If you have Docker and Portainer, use the stack compose and environment values.
STACK Compose
version: '3.9'
services:
pluto-for-channels-2:
# GitHub home for this project with setup instructions: https://github.com/jgomez177/pluto-for-channels/pkgs/container/pluto-for-channels
# Docker Hub home for this project: none
image: ghcr.io/jgomez177/pluto-for-channels:${TAG}
container_name: pluto-for-channels-2
ports:
- ${HOST_PORT}:${PLUTO_PORT} # Use the same port number the container is using, or optionally change it if the port is already in use on your host
environment:
- PLUTO_PORT=${PLUTO_PORT} # Port number for container to listen on. Default 7777.
- PLUTO_CODE=${PLUTO_CODE} # What country streams will be hosted. Multiple can be hosted using comma separation.
- TZ=${TZ}
restart: unless-stopped
Environment variables
TAG=latest
HOST_PORT=8081
PLUTO_PORT=7777
PLUTO_CODE=local
TZ=America/Los_Angeles
Change these
HOST_PORT=8081
to whatever port you want to access the container at
TZ=America/Los_Angeles
to TZ=America/New_York
Container webpage
Source settings
Source channel
1 Like
1 Like
This is resolved. Moved to docker image.
Thanks for responding.
Jim