FLUTTER ECOSYSTEM

jeromexiong/audio_manager

알림, 잠금 화면 컨트롤 및 데스크톱 시스템 미디어 컨트롤을 갖춘 크로스 플랫폼 플러터 오디오 플러그인입니다.

audio_manager 프로젝트 이미지
Stars
97
Forks
55
최근 푸시(UTC)
2026. 8. 15.
프로젝트 상태
활성
熊一哈 GitHub avatar
GITHUB User

熊一哈 ↗

The sky is boundless, wisdom is infinite.

NanChang Jiangxi 공식 웹사이트 ↗
언어DartC++CMakeCRubyHTML

기술 주제

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 5 개
  • flutter{"sdk":"flutter"}
  • flutter_web_plugins{"sdk":"flutter"}
  • web^1.1.1
  • flutter_test개발 의존성{"sdk":"flutter"}
  • lints개발 의존성^6.1.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

audio_manager

pub package platforms points CI GitHub release License: MIT Swift Package Manager

A Flutter plugin for music playback, notification handling, lock-screen controls, and desktop system media controls.

Screenshots

Android iOS macOS
The example app running in Android The example app running in iOS The example app running in macOS

Supported platforms

Platform Playback / integration
iOS AVPlayer + lock screen / Control Center
Android MediaPlayer + MediaSession notification
macOS AVPlayer + Now Playing / Control Center
Windows Windows.Media.Playback + SMTC
Linux GStreamer + MPRIS
Web HTMLAudioElement

Installation

Add the dependency to pubspec.yaml:

dependencies:
  audio_manager: ^1.0.0

iOS

The plugin supports both CocoaPods and Swift Package Manager (SPM) on iOS. Flutter 3.24+ integrates it via SPM automatically; otherwise it falls back to CocoaPods.

Add the following permissions in the info.plist file

	<key>UIBackgroundModes</key>
	<array>
		<string>audio</string>
	</array>
	<key>NSAppTransportSecurity</key>
	<dict>
		<key>NSAllowsArbitraryLoads</key>
		<true/>
	</dict>
  • ⚠️ Some methods are invalid in the simulator, please use the real machine
  • ⚠️ Only add UIBackgroundModes -> audio when your app really keeps playing audio in the background. If the app does not provide background audio, App Store review may reject it with guideline 2.5.4.

Android

Since Android9.0 (API 28), the application disables HTTP plaintext requests by default. To allow requests, add android:usesCleartextTraffic="true" in AndroidManifest.xml

<application
	...
	android:usesCleartextTraffic="true"
	...
>
  • ⚠️ Android minimum supported version 23 (app/build.gradle -> minSdkVersion: 23)
  • ⚠️ Compile against Android SDK 34 or newer when targeting Android 12+ apps. The plugin now requires explicit PendingIntent flags, a media playback foreground service type, and Android 13+ receiver export flags.
  • ⚠️ Android notification and lock-screen controls use MediaSession / MediaStyle. Custom notification icons and full custom layouts are not exposed by the public API.

Desktop (macOS / Windows / Linux)

Desktop playback integrates with the system media controls: macOS Now Playing / Control Center, Windows SMTC (taskbar media flyout), and Linux MPRIS.

  • macOS: to stream network audio, add the com.apple.security.network.client entitlement to the app's entitlements files (DebugProfile.entitlements / Release.entitlements):
    <key>com.apple.security.network.client</key>
    <true/>
    
  • Linux: requires GStreamer development packages to build (gst_player lives in gst-plugins-bad):
    sudo apt install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev
    
  • Windows: built with the Windows 10 SDK (C++/WinRT); requires Visual Studio 2022+.

Usage

The plugin uses a singleton. Get AudioManager.instance and start playback directly.

Quick start

You can use local assets, local files, or network resources.

import 'package:audio_manager/audio_manager.dart';
import 'package:flutter/foundation.dart';

final audio = AudioManager.instance;

// Initial playback. Preloaded playback information.
final error = await audio.start(
  'assets/audio.mp3',
  'Example title',
  desc: 'Example artist',
  // Network cover or asset cover.
  cover: 'assets/ic_launcher.png',
);

if (error.isNotEmpty) {
  debugPrint('Failed to start: $error');
}

// Play or pause; that is, pause if currently playing, otherwise play.
await audio.playOrPause();

// Events callback.
audio.onEvents((events, args) {
  debugPrint('$events $args');
});

Update metadata while playing

await AudioManager.instance.updateInfo(
  title: "new title",
  desc: "new artist",
  coverUrl: "https://example.com/new-cover.png",
  titleMaxLines: 2,
  showPreviousButton: true,
  showStopButton: false,
);

Playback speed is supported through AudioManager.instance.setRate(AudioRate.rate150).

final audio = AudioManager.instance;
await audio.setRate(AudioRate.rate150);
await audio.setVolume(0.8);

Query state from background handlers

Firebase background isolates cannot reliably receive AudioManager.onEvents. For short-lived checks, query the native state directly:

final state = await AudioManager.instance.currentState();
print(state["isPlaying"]);
print(state["title"]);

Release Notes 1.0.0

audio_manager 1.0.0 是首个全平台版本,正式支持 iOS、Android、macOS、Windows、Linux 和 Web。

新增能力
  • iOS 新增 Swift Package Manager(SPM)支持,与 CocoaPods 双轨并行
  • macOS 使用 AVFoundation,接入 Now Playing / Control Center、媒体键和系统音量同步
  • Windows 使用 Windows.Media.Playback,接入 SMTC 和任务栏媒体控制
  • Linux 使用 GStreamer,接入 MPRIS 桌面媒体控制
  • Web 基于 package:web 和 HTMLAudioElement,兼容 Web/WASM
  • 启用 package:lints/recommended,静态分析和 pub.dev 评分达到满分
  • 更新 README、截图、示例文档和 pubspec 仓库元数据
升级步骤
  1. 将依赖更新为 ^1.0.0
  2. 重新执行 flutter pub get
  3. iOS 工程重新执行 pod install,或使用 Flutter 3.24+ 自动集成 SPM
  4. macOS 网络音频需要添加 com.apple.security.network.client entitlement
  5. Linux 构建需要 GStreamer 开发包
  6. Windows 构建需要 Windows 10 SDK 和 Visual Studio 2022+
兼容性

原有核心 API 保持不变,AudioManager.instance、start、playOrPause、updateInfo、currentState 等仍可直接使用。

已知限制
  • 通知、锁屏和后台播放能力集中在 iOS / Android
  • 桌面端使用系统媒体控制,不等同于移动端通知栏
  • Web 端不支持后台播放和系统级媒体控制
  • pub.dev 的 Publisher 仍显示为 unverified uploader,需要在 pub.dev 创建并验证 Publisher 后转移包

完整说明见 RELEASE_NOTES.md。