我正在尝试使用 javascript api 和 FB.ui 将 ogg 音频文件发布到流中,但我不知道该怎么做。这是我对 FB.ui 的调用:
FB.ui(
{
method: 'stream.publish',
message: '',
attachment: {
name: artist + ' - ' + song,
"media" : [{
"type":"mp3" ,
"src" : file,
"artist" : artist,
"title" : song
}]
}
},
function(response) {
}
);
将媒体类型设置为“mp3”时,文件无法播放,经过大量环顾后,我无法确定要指定的另一种音频类型。是否可以共享 ogg 文件?提前致谢!