14

我想在 React Native 中播放声音。

我曾尝试在zmxv/react-native-sound中阅读此处,但作为像我这样的初学者,该文档让我很困惑如何在 React Native 代码中应用它。

在我尝试这个在事件上做出反应本机播放声音并制作如下代码之前:

import React, { Component } from 'react'
import { StyleSheet, Text, View, TouchableOpacity } from 'react-native'
const Sound = require('react-native-sound')


export default class MovieList extends Component {

    handlePress() {
        // Play some sound here
        let hello = new Sound('motorcycle.mp3', Sound.MAIN_BUNDLE, (error) => {
            if (error) {
              console.log(error)
            }
          })

          hello.play((success) => {
            if (!success) {
              console.log('Sound did not play')
            }
          })
    }

    render() {
        const { movie } = this.props
        return (
            <TouchableOpacity onPress={this.handlePress.bind(this)}>
                <View>
                      <Text>Start</Text>
                </View>
            </TouchableOpacity>
        )
    }
}

这就是我放音频的地方:

MyProject/android/app/src/main/res/raw/motorcycle.mp3

项目结构

项目结构

那么,我的代码有什么问题?

4

4 回答 4

13

这将预加载声音,当您按下播放按钮时,它将播放它。

export default class MovieList extends Component {
    componentDidMount(){
      this.hello = new Sound('whoosh.mp3', Sound.MAIN_BUNDLE, (error) => {
        if (error) {
          console.log('failed to load the sound', error);
          return;
        }
      });
    }
    
    
    handlePress() {
      this.hello.play((success) => {
        if (!success) {
          console.log('Sound did not play')
        }
      })
    }

    render() {
        const { movie } = this.props
        return (
            <TouchableOpacity onPress={this.handlePress.bind(this)}>
                <View>
                      <Text>Start</Text>
                </View>
            </TouchableOpacity>
        )
    }
}

如果您想从声音列表中播放音轨,请查看此要点以获取详细代码。

于 2018-12-12T07:15:34.753 回答
11

非常感谢谁回答了这个问题,但我已经用这个简单的方法解决了这个问题:

import React, { Component } from 'react'
import { Text, View, TouchableOpacity } from 'react-native'
import Sound from 'react-native-sound';

export default class MovieList extends Component {

    sound = new Sound('motorcycle.mp3');

    playSound = () => {
        this.sound.play()
    }

    render() {
        return (
            <View>
                <TouchableOpacity onPress={this.playSound}>
                    <View>
                        <Text>Start</Text>
                    </View>
                </TouchableOpacity>
            </View>
        )
    }
}
于 2018-12-12T08:47:48.467 回答
4

试试这个代码来播放声音:

setTimeout(() => {
     var sound = new Sound("motorcycle.mp3",Sound.MAIN_BUNDLE, (error) => {
                     /* ... */
     });

     setTimeout(() => {
         sound.play((success) => {
                  /* ... */
         });
    }, 100);
}, 100);

这是 hacky 并由https://github.com/zmxv/react-native-sound/issues/89#issuecomment-276678935解决

于 2018-12-12T07:04:55.350 回答
1

对于 iOS,对我有用的是以下内容:

  1. 检查我的资源文件是否正在 xCode 中播放
    • 打开 xCode
    • 选择文件
    • 在 xCode 播放器中单击播放
  2. 一旦它播放声音(某些文件有问题,可能是编码),
    • 将文件添加为资源(确保处于构建阶段)
  3. 在 xCode 中编译项目并从那里运行它
    • 注意:每次更改资源或期望新资源时,您都需要通过 xCode 或npm run ios

这是我的代码:

const sound = new Sound(
    "myFile.mp3",
    Sound.MAIN_BUNDLE,
    error => {
      if (error) {
        console.log("failed to load the sound", error);
        return;
      }
      sound.play(() => sound.release());
    }
  );
// The play dispatcher
sound.play();
于 2019-11-17T10:29:41.957 回答