pierre-emmanuelJ / iptv-proxy

Reverse proxy on iptv m3u and m3u8 file and xtream codes client api
GNU General Public License v3.0
535 stars 153 forks source link

[BUG] URI provided for playlist with no tracks #46

Closed CyberPoison closed 3 years ago

CyberPoison commented 4 years ago

Hi everyone i getting some issue when running the docker container i get this message on the logs the m3u is correctly in the folder but looks like something is wrong

this is my logs

URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks
URI provided for playlist with no tracks

and this is my docker-compose up -d

version: "3"
services:
  iptv-proxy:
    build:
      context: .
      dockerfile: Dockerfile
    volumes:
      # If your are using local m3u file instead of m3u remote file
      # put your m3u file in this folder
      - /root/Livetv:/root/iptv
    container_name: "iptv-proxy"
    restart: on-failure
    ports:
       # have to be the same as ENV variable PORT
      - 9593:9593
    environment:
      # if you are using m3u remote file
      # M3U_URL: https://example.com/iptvfile.m3u
      M3U_URL: /root/iptv/LiveTV.m3u
      # Port to expose the IPTVs endpoints
      PORT: 9593
      # Hostname or IP to expose the IPTVs endpoints (for machine not for docker)
      HOSTNAME: localhost
      GIN_MODE: release
      ## Xtream-code proxy configuration
      ##### UNSAFE AUTH TODO ADD REAL AUTH
      #will be used for m3u and xtream auth poxy
      USER: Admin
      PASSWORD: test
CyberPoison commented 4 years ago

The file LiveTV.m3u is on the /root/Livetv Folder so don't understand why the container doesn't access to it

pierre-emmanuelJ commented 4 years ago

Thanks for your issue! :) I'll try to reproduce

pierre-emmanuelJ commented 3 years ago

it looks like an issue with your file format, can you show me a sample of the playlist content file?

Thanks