Flash 3.5.3 - 播放预录制文件的重大变化?

发布于 2024-08-19 19:50:25 字数 587 浏览 1 评论 0原文

安装 Adob​​e FMS 3.5.3 似乎完全消除了我们所有的交互式应用程序,我想知道其他人是否有同样的经历。

回到 3.5.2 的快乐时光,为了将预先录制的文件添加到流中,我们创建了流:

this.clientPlayStream = Stream.get (slrStreamName);

然后向其中添加了一个文件:

this.clientPlayStream.play ("MP3:fileName", 0, - 1, 0);

处理的是要播放的文件(本例中为“fileName.mp3” )位于应用程序“streams\ instancename”子目录中。目前,我不确定我在哪里学会了这样做,但无论如何,它曾经很有魅力。

然而,这在 3.5.3 中不起作用 - 我们收到“文件未找到”错误。由于我们有几个依赖于此的大型应用程序即将上线,如果这里有人了解更多相关信息,并告诉我们我们做错了什么,我们将不胜感激。

鉴于它还没有出现,我猜测我们只是在利用一个现已修复的错误(在发行说明中看不到任何内容)。

非常感谢

托比

installing Adobe FMS 3.5.3 seems to completely wipe out all our interactive applications, and I wondered if anybody else had the same experience.

Back in the happy days of 3.5.2, to add a pre-recorded file to a stream, we created the stream:

this.clientPlayStream = Stream.get (slrStreamName);

then added a file to it:

this.clientPlayStream.play ("MP3:fileName", 0, - 1, 0);

the deal was that the file to play ("fileName.mp3" in this example) was in the applications "streams\ instancename " subdirectory. At the moment, I'm not sure where I learnt to do this, but whatever, it used to work a charm.

However, this isn't working in 3.5.3 - we're getting "file not found" errors. As we've got a couple of big apps about to go live that depend on this, we'd really appreciate it if anybody here knows more about this, and tell us what we're doing wrong.

Seeing as it hasn't come up already, I'm guessing that we were just exploiting a bug that's now been fixed (can't see anything in the release notes).

Much obliged

Toby

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

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

发布评论

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

评论(1

箹锭⒈辈孓 2024-08-26 19:50:25

惊慌失措 - 我们有一个狡猾的配置文件。由于某种原因,我们将其作为第一个条目:

<StreamManager>
    <VirtualDirectory>
      <!-- Specifies application specific virtual directory mapping for streams.   -->
        <Streams>/;${LIVE_DIR}</Streams>
    </VirtualDirectory>

</StreamManager>

在 3.5.3 之前,这没有什么区别,但看起来 Adob​​e 现在已经修复了该错误,并且实际上重定向到流的指定虚拟目录,正如您所期望的那样。 ..

panic over - we had a dodgy config file. For some reason, we had this as the first entry:

<StreamManager>
    <VirtualDirectory>
      <!-- Specifies application specific virtual directory mapping for streams.   -->
        <Streams>/;${LIVE_DIR}</Streams>
    </VirtualDirectory>

</StreamManager>

prior to 3.5.3, this made no difference, but it looks like Adobe have fixed the bug now, and actually redirect to the specified virtual directory for streams, as you might expect ...

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