react-native-track-player

A fully fledged audio module created for music apps. Provides audio playback, external media controls, chromecast support, background mode and more!

Github星跟蹤圖

downloads
npm
discord

react-native-track-player

A fully fledged audio module created for music apps. Provides audio playback, external media controls, chromecast support, background mode and more!


Features

  • Lightweight - Optimized to use the least amount of resources according to your needs
  • Feels native - As everything is built together, it follows the same design principles as real music apps do
  • Multi-platform - Supports Android, iOS and Windows
  • Media Controls support - Provides events for controlling the app from a bluetooth device, the lockscreen, a notification, a smartwatch or even a car
  • Local or network, files or streams - It doesn't matter where the media belongs, we've got you covered
  • Casting support - Seamlessly switch to any Google Cast compatible device, supporting custom media receivers
  • Adaptive bitrate streaming support - Support for DASH, HLS or SmoothStreaming
  • Caching support - Cache media files to play them again without an internet connection
  • Background support - Keep playing audio even after the app is in background
  • Fully Customizable - Even the notification icons are customizable!
  • Supports React Hooks ? - Includes React Hooks for common use-cases so you don't have to write them

Platform Support, Feature, Android, iOS, Windows, -------, :-----:, :-:, :-----:, Load from the app bundle, ✓, ✓, ✓, Load from the network, ✓, ✓, ✓, Load from the file system, ✓, ✓, ✓, Adaptive Bitrate Streaming, ✓, ✓, ✓, Play/Pause/Stop/Reset, ✓, ✓, ✓, Seeking/Volume, ✓, ✓, ✓, Remote Media Controls, ✓, ✓, ✓, Caching, ✓, ✗, ✗, Events, ✓, ✓, ✓, Background Mode, ✓, ✓, ✓, Casting, ✓, ✗, ✗, Check Platform Support for more information.

Why another music module?

After trying to team up modules like react-native-sound, react-native-music-controls and react-native-google-cast, I've noticed that their structure and the way should be tied together can cause a lot problems (mainly on Android). Those can heavily affect the app stability and user experience.

All audio modules (like react-native-sound) don't play in a separated service on Android, which should only be used for simple audio tracks in foreground (such as sound effects, voice messages, etc)

react-native-music-controls is meant for apps using those audio modules, although it has a few problems due to how the audio is not directly tied to the controls, it can be pretty useful for casting (such as Chromecast)

react-native-google-cast works pretty well and also supports custom receivers, but it has fewer player controls, it's harder to integrate and still uses the Cast SDK v2

Example

If you want to get started with this module, check the API page.
If you want detailed information about the API, check the Documentation.
You can also look at our example project here.

import TrackPlayer from 'react-native-track-player';

// Creates the player
TrackPlayer.setupPlayer().then(async () => {

    // Adds a track to the queue
    await TrackPlayer.add({
        id: 'trackId',
        url: require('track.mp3'),
        title: 'Track Title',
        artist: 'Track Artist',
        artwork: require('track.png')
    });

    // Starts playing it
    TrackPlayer.play();

});

Maintainers

David Chavez & Guilherme Chaguri

Community

You can find us as part of the React Native Folks Discord in the #react-native-track-player channel.

Support the development

Support the further development of this and other libraries.

主要指標

概覽
名稱與所有者doublesymmetry/react-native-track-player
主編程語言TypeScript
編程語言Java (語言數: 12)
平台
許可證Apache License 2.0
所有者活动
創建於2017-03-16 20:18:39
推送於2025-04-16 15:26:57
最后一次提交
發布數91
最新版本名稱v4.1.1 (發布於 )
第一版名稱v0.2.0 (發布於 )
用户参与
星數3.4k
關注者數54
派生數1.1k
提交數1k
已啟用問題?
問題數1727
打開的問題數29
拉請求數422
打開的拉請求數11
關閉的拉請求數244
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?