承接 selective/audio-type 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

selective/audio-type

Composer 安装命令:

composer require selective/audio-type

包简介

Audio format detection

README 文档

README

Audio format detection library for PHP.

Latest Version on Packagist Software License build Coverage Status Quality Score Total Downloads

Features

  • Detection of the audio type based on its header
  • No dependencies
  • Very fast

Supported formats

  • MP3 (MPEG-1 Audio Layer III)
  • WAV (WAVE PCM soundfile format)
  • MIDI (Musical Instrument Digital Interface)
  • FLAC (Free Lossless Audio Codec)
  • OGA (OGG Vorbis sound format)
  • MKA (Audio-only Matroska container)
  • WEBM (Audio only)
  • RealAudio (It contains only audio)
  • AIFF (Audio Interchange File Format)
  • CAF (Apple Core Audio File)
  • AAC (Advanced Audio Coding)
  • WMA (Windows Media Audio)
  • RMI (RIFF-MIDI Audio)
  • AU (AU Audio)

Requirements

  • PHP 8.1 - 8.5

Installation

composer require selective/audio-type

Usage

Detect the audio type of file

use Selective\AudioType\AudioTypeDetector;
use Selective\AudioType\Provider\DefaultAudioProvider;
use SplFileObject;

$file = new SplFileObject('example.mp3');

$detector = new AudioTypeDetector();

// Add audio detectors
$detector->addProvider(new DefaultAudioProvider());
$audioType = $detector->getAudioTypeFromFile($file);

// Get the audio format
echo $audioType->getFormat(); // mp3

// Get the mime type
echo $audioType->getMimeType(); // audio/mp3

Detect the audio type of in-memory object

use Selective\AudioType\AudioTypeDetector;
use Selective\AudioType\Provider\DefaultAudioProvider;
use SplTempFileObject;

$audio = new SplTempFileObject();

$audio->fwrite('my file content');

$detector = new AudioTypeDetector();

// Add audio detectors
$detector->addProvider(new DefaultAudioProvider());

echo $detector->getAudioTypeFromFile($audio)->getFormat();

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

  • Stars: 5
  • Watchers: 2
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-09-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固