Alexa 音频流
Alexa Audio Streaming
此响应是否有任何立即错误会导致其“无效”?
{
"type": "AudioPlayer.Play",
"playBehavior": "string",
"audioItem": {
"stream": {
"url": "https://19303.live.streamtheworld.com/WUOMFM.mp3",
"token": "thisisanaudiotoken",
"expectedPreviousToken": "string",
"offsetInMilliseconds": 0
}
}
}
它应该开始流式传输 .mp3
响应没有问题,但音频应编码为特定格式以便 Alexa 播放。请使用以下命令转换您的音频,
ffmpeg -i <input-file> -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 <output-file.mp3>
下载 'ffmpeg '
如果您在 运行 上述命令之前使用 windows CD 到 ffmeg 的 bin 文件夹。
此响应是否有任何立即错误会导致其“无效”?
{
"type": "AudioPlayer.Play",
"playBehavior": "string",
"audioItem": {
"stream": {
"url": "https://19303.live.streamtheworld.com/WUOMFM.mp3",
"token": "thisisanaudiotoken",
"expectedPreviousToken": "string",
"offsetInMilliseconds": 0
}
}
}
它应该开始流式传输 .mp3
响应没有问题,但音频应编码为特定格式以便 Alexa 播放。请使用以下命令转换您的音频,
ffmpeg -i <input-file> -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 <output-file.mp3>
下载 'ffmpeg '
如果您在 运行 上述命令之前使用 windows CD 到 ffmeg 的 bin 文件夹。