Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 639 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 639 Bytes

react-native-amr

Native AMR play for react-native (iOS only)

npm install react-native-amr
react-native link react-native-amr
import AMR from 'react-native-amr'

AMR.stop();

//callback: (error, event: {status}) => void)
// status: 0:playing, 1:play success end, 2:play failed, 3: stop

AMR.play(path, (error, event) => {
    console.log(error);
    console.log(event);
    if (!error) {
        if (event.status === 1) {
            //play success
        } else if(event.status === 3) {
            //stop success
        }
    } else {
        //event.status = 2
        console.log('can\'t play');
    }
});