PHPackages                             leequix/icecast-streamer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. leequix/icecast-streamer

ActiveLibrary[HTTP &amp; Networking](/categories/http)

leequix/icecast-streamer
========================

Composer package for streamingto icecast

1.0.0(8y ago)2322MITPHP

Since Jan 25Pushed 8y ago1 watchersCompare

[ Source](https://github.com/leequix/icecast-streamer)[ Packagist](https://packagist.org/packages/leequix/icecast-streamer)[ RSS](/packages/leequix-icecast-streamer/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Icecast streamer
================

[](#icecast-streamer)

Icecast-streamer is library for streaming mp3 to icecast.

Example of stream
-----------------

[](#example-of-stream)

```
require_once __DIR__ . '/vendor/autoload.php';

use IcecastStreamer\Stream;
use IcecastStreamer\Stream\MountPoint;
use IcecastStreamer\Stream\Connection;
use IcecastStreamer\Stream\AuthCredentials;
use IcecastStreamer\Stream\Info;

$mountPoint = new MountPoint('/live', new AuthCredentials('source', 'hackme'));
$connection = new Connection('localhost', 8000, $mountPoint);
$info = new Info();
$info->setContentType('audio/mpeg');
$info->setName('Super cool stream');
$info->setDescription('My first stream');
$info->setGenre('drum and base');
$info->setUrl('http://leequix.xyz');
$stream = new Stream($connection, $info);

try {
    $stream->start();
} catch (Exception $exception) {
    echo $exception->getMessage();
}

$file = fopen('./imperial_march.mp3', 'r');

while ($data = fread($file, 24567)) {
    $stream->write($data);
    echo ('[' . date('H:i:s') . '] I am send ' . strlen($data) . ' bytes of data!' . PHP_EOL);
    sleep(1);
}

fclose($file);
$stream->stop();
```

The documentation is in the `/docs` directory.

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3077d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/14030096?v=4)[Vorobeychikov Mikhail](/maintainers/leequix)[@leequix](https://github.com/leequix)

---

Top Contributors

[![leequix](https://avatars.githubusercontent.com/u/14030096?v=4)](https://github.com/leequix "leequix (3 commits)")

### Embed Badge

![Health badge](/badges/leequix-icecast-streamer/health.svg)

```
[![Health](https://phpackages.com/badges/leequix-icecast-streamer/health.svg)](https://phpackages.com/packages/leequix-icecast-streamer)
```

###  Alternatives

[php-http/cache-plugin

PSR-6 Cache plugin for HTTPlug

25025.5M80](/packages/php-http-cache-plugin)[illuminate/http

The Illuminate Http package.

11937.2M6.6k](/packages/illuminate-http)[rdkafka/rdkafka

A PHP extension for Kafka

2.2k20.0k1](/packages/rdkafka-rdkafka)[httpsoft/http-message

Strict and fast implementation of PSR-7 and PSR-17

87930.4k113](/packages/httpsoft-http-message)[mezzio/mezzio-router

Router subcomponent for Mezzio

265.3M84](/packages/mezzio-mezzio-router)[serpapi/google-search-results-php

Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com

69122.6k](/packages/serpapi-google-search-results-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
