我一直在尝试在我的flutter项目中实现amazon polly,但我无法在iOS设备上运行它。它在Android上运行得非常好。我使用的是iOS不支持的字节源代码。
BytesSource source = BytesSource(bytes);
await audioPlayer.play(source);
文件中写道:
/// Source containing the actual bytes of the media to be played.
///
/// This is currently only supported for Android (SDK >= 23).
所以我的问题是如何在iOS或macOS设备中播放字节与音频播放器包?我是否需要使用另一个包或有可用的变通方案?
1条答案
按热度按时间xesrikrc1#
目前在Android之外可用的唯一方法是将这些字节写入文件,然后在具有
DeviceFileSource
的音频播放器中使用该文件。您可以关注此问题,以获得有关何时为其他平台实现
BytesSource
的通知:https://github.com/bluefireteam/audioplayers/issues/1269