This repository was archived by the owner on Feb 17, 2026. It is now read-only.
Dynamic Track Metadata Update Patch (Android Only) #91
Closed
davidx9000
started this conversation in
Show and tell
Replies: 1 comment
-
|
I'm going to close this one as streaming has been de-scoped for this library. Thanks anyway though. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This patch adds an
updateMetadata()method to react-native-audio-pro.The goal is to update the track metadata without reloading the audio stream.
Patch: https://gist.github.com/davidx9000/3062ae2c3a1996cb1465778b18f9bf9d
Note: currently only for Android.
Installation:
Usage:
import { AudioPro } from 'react-native-audio-pro';
AudioPro.updateMetadata({
title: "New Song Title",
artist: "New Artist",
album: "New Album",
artwork: "https://example.com/new-artwork.jpg"
});
Beta Was this translation helpful? Give feedback.
All reactions