bytelus/nowplaying 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bytelus/nowplaying

Composer 安装命令:

composer require bytelus/nowplaying

包简介

A lightweight PHP adapter for viewing the current now playing data in Icecast and SHOUTcast 1/2. A part of the Radiolize software suite.

README 文档

README

NowPlaying is a lightweight, modern, object-oriented PHP library that abstracts out the currently playing metadata from popular radio broadcast software into a single common return format.

Installing

NowPlaying is a Composer package that you can include in your project by running:

composer require bytelus/nowplaying

Compatibility

Now Playing data Detailed client information
Icecast (2.4+)
SHOUTcast 2
SHOUTcast 1

Usage Example

<?php
// Example PSR-17 and PSR-18 implementation from Guzzle 7
// Install those with:
//   composer require guzzlehttp/guzzle:^7 http-interop/http-factory-guzzle

$adapterFactory = new \NowPlaying\Adapter\AdapterFactory(
    new \Http\Factory\Guzzle\UriFactory,
    new \Http\Factory\Guzzle\RequestFactory,
    new \GuzzleHttp\Client
);

$adapter = $adapterFactory->getAdapter(
    \NowPlaying\Adapter\AdapterFactory::ADAPTER_SHOUTCAST2,
    'http://my-station-url.example.com:8000',
    'AdminPassword!' // Optional
);

// The first argument to the functions is the mount point or
// stream ID (SID), to pull one specific stream's information.
$now_playing = $adapter->getNowPlaying('1');

$clients = $adapter->getClients('1');

Example "now playing" response (PHP objects represented in JSON):

{
    "currentSong": {
        "text": "Joe Bagale - Until We Meet Again",
        "title": "Until We Meet Again",
        "artist": "Joe Bagale"
    },
    "listeners": {
        "current": 0,
        "unique": 0,
        "total": 0
    },
    "meta": {
        "online": true,
        "bitrate": 128,
        "format": "audio/mpeg"
    },
    "clients": []
}

Example "clients" response:

[
    {
        "uid": 1,
        "ip": "127.0.0.1",
        "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 Safari/537.36",
        "connectedSeconds": 123
    }
]

统计信息

  • 总下载量: 105
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2021-02-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固