React Native Audio Pro

A React Native module for robust audio playback from remote URLs. Ideal for music, audiobook and podcast apps.

npm version Website GitHub Repo

๐Ÿš€ Features

๐ŸŽง React Hook in Action

import { useAudioPro } from 'react-native-audio-pro';

export default function Player() {
  const { state, duration, position } = useAudioPro();
  return (
    <View>
      <Text>State: {state}</Text>
      <Text>Position: {position} / {duration}</Text>
    </View>
  );
}

๐Ÿงฉ Module in Action

import {AudioPro} from 'react-native-audio-pro';

AudioPro.configure({ contentType: 'speech' });

AudioPro.load({
  url: 'https://example.com/audio.mp3',
  title: 'Sample Track',
  artwork: 'https://example.com/image.jpg',
  artist: 'Narrator Name',
});

AudioPro.play();

Documentation

For full setup and API reference, see the GitHub README.

๐Ÿš€ Ready to build?

Check it out and let us know how you go! If you run into any issues, log an issue โ€” weโ€™ll squash bugs fast. ๐Ÿ’ช