Skip to content
GitLab
  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • Icecast-Server Icecast-Server
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 102
    • Issues 102
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 5
    • Merge requests 5
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • External wiki
    • External wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Xiph.Org
  • Icecast-ServerIcecast-Server
  • Issues
  • #2222
Closed
Open
Created Sep 05, 2015 by itmmedia@itmmedia

m3u link contents

when attempting to play a stream from the links on the icecast server web interface the contents of the m3u file uses the wrong port number.

this may be related to ticket #2180

when connected to the server web interface with ssl ( https ) on port 8001 ( audio clients connect via port 8000 without ssl ) the contents of the m3u file when clicking on the icon, contains port 8001 instead of 8000. the other links/icons ( vclt and xpsf ) seem to be correct.

audio streams are anonymous relays of streams from web sites accessed by clients ( winamp ) on a local area network. this issue happens with any/all configured relays.

M3U contents: ( wrong port )

http://192.168.xxx.xxx:8001/mountpoint

NOTE: This should be http://192.168.xxx.xxx:8000/mountpoint or http://servername:8000/mountpoint

VCLT contents: ( ok ? )

STREAMURL=http://servername:8000/mountpoint
TITLE=
SERVER_NAME=Orange Cty - For more ...
DESCRIPTION=Unspecified description
SIGNALINFO=
GENRE=Railroad Radio Scanner
==

XPSF contents: ( ok ? )

<?xml version="1.0" encoding="UTF-8"?>
<playlist xmlns="http://xspf.org/ns/0/" version="1">
  <title></title>
  <creator></creator>
  <trackList>
    <track>
      <location>http://servername:8000/mountpoint</location>
      <title></title>
      <annotation>Stream Title: Orange Cty - For more ...
Stream Description: Unspecified description
Content Type:audio/mpeg
Bitrate: 28
Current Listeners: 1
Peak Listeners: 1
Stream Genre: Railroad Radio Scanner</annotation>
      <info>http://www.streamwebsite.url</info>
    </track>
  </trackList>
</playlist>

parts of icecast.xml:

   <!-- You may have multiple <listener> elements -->
   <listen-socket>
       <port>8000</port>
       <!-- <bind-address>127.0.0.1</bind-address> -->
       <!-- <shoutcast-mount>/stream</shoutcast-mount> -->
   </listen-socket>

   <!-- admin port on 8001 using ssl -->
   <!-- added/enabled Thu Jan 22 08:31:43 PST 2015 -->
   <listen-socket>
       <port>8001</port>
       <ssl>1</ssl>
   </listen-socket>

    <relay>
<!--    http://railaudio.stream-host-name:stream-port/ -->
        <server>railaudio.stream-host-name</server>
        <port>stream-port</port>
        <mount>/</mount>
        <local-mount>/mountpoint</local-mount>
        <on-demand>1</on-demand>
        <relay-shoutcast-metadata>1</relay-shoutcast-metadata>
    </relay>

connecting to admin panel at: https://192.168.xxx.xxx:8001/

Edited Nov 18, 2018 by Philipp Schafft
Assignee
Assign to
Time tracking