React Native Expo AV-音频未播放



我正在使用expo-av库实现AudioPlayer。对于播放音频,我这样做:

import { Audio } from "expo-av";
export default function AudioPlayer() {}
AudioPlayer.playSound = async function (
source,
initialStatus = { shouldPlay: true },
onPlaybackStatusUpdate = null,
downloadFirst = true
) {
try {
// Create a complete sound object
const { sound, status } = await Audio.Sound.createAsync(
source,
initialStatus,
onPlaybackStatusUpdate,
downloadFirst
);
console.log(status);
// Play the sound
await sound.playAsync();
console.log("Sound played! Unloading from memory...");
// We are done...
// Unload the sound from memory
sound.unloadAsync();
} catch (err) {
throw err;
}
};

但是,出于某种原因,当我做时

AudioPlayer.playSound(require("../../assets/microphone-button-press.mp3"));

不播放任何声音。

我做错了什么?(在iPhone 11 pro、iOS 14上测试(

这就是我正在记录的状态对象的样子:

Object {
"didJustFinish": false,
"durationMillis": 3120,
"hasJustBeenInterrupted": false,
"isBuffering": false,
"isLoaded": true,  <---------------
"isLooping": false,
"isMuted": false, <------------
"isPlaying": false,
"pitchCorrectionQuality": "Varispeed",
"playableDurationMillis": 3120,
"positionMillis": 0,
"progressUpdateIntervalMillis": 500,
"rate": 1,
"shouldCorrectPitch": false,
"shouldPlay": true, <-----------------
"uri": "file:///var/mobile/Containers/Data/Application/E249E9F5-63EE-4421-88E6-F4F52B0D99F2/Library/Caches/ExponentExperienceData/%2540victorio%252Fmy-app-name/ExponentAsset-cd2511ab9f64faf7c2c23a26c8ac58c5.mp3", <----------------
"volume": 1, <--------------
}

在播放之前加载您的声音。

await sound.current.loadAsync(
Sounds[audioSourceWithRequire],
);
then await sound.current.playAsync();

最新更新