Alluisio

Results 4 comments of Alluisio

I implemented ``` TrackPlayer.addEventListener(Event.PlaybackState, (event) => { console.log("Event.PlaybackState", event); }); ``` in service.js, to check if the track status changed, I get the following return when using seekTo ``` LOG...

when using implementation with local file it works correctly, however, when using the api to return the track, it restarts ``` async function addTrackAndPlay() { await PlaybackService(); TrackPlayer.updateOptions({ android: {...

first item: duration ok, position ok, seek to ok second item: duration ok, position ok, seek to ok third item: duration ok, position ok, seek to ok fourth item: duration...

> very likely is your media source... see example https://github.com/doublesymmetry/react-native-track-player/blob/main/example/src/assets/data/playlist.json Currently, I solved it by downloading the audio data completely, and then playing it, doing it this way I have...