Stream.publish ogg

发布于 2024-12-04 16:01:05 字数 550 浏览 0 评论 0原文

我正在尝试使用 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 文件吗? 提前致谢!

i'm trying to publish ogg audio files to the stream using javascript api and FB.ui,
but i can't figure out how to do it.
Here is my call to FB.ui :

FB.ui(
      {
        method: 'stream.publish',
        message: '',
        attachment: {
            name: artist + ' - ' + song,
            "media" : [{
                "type":"mp3" ,
                "src" :  file,
                "artist" : artist,
                    "title" : song
            }]
        }

      },
      function(response) {
      }
    );

With media type set as "mp3" the file just doesn't play, and after lot of looking around i can't figure out another audio type to specify.
Is it possible to share ogg files ?
Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-12-11 16:01:05

我很确定只支持 mp3 格式。我从未在文档中看到过 .ogg 。

I'm pretty sure only mp3 format is supported. I have never seen .ogg mentioned in the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文