如何在 Flex Builder 3 中捕获流视频显示并将其保存到磁盘?

发布于 2024-11-07 16:02:07 字数 810 浏览 0 评论 0原文

我一段时间以来一直在寻找问题的解决方案,但没有得到答案。 我有一个带有 VideoDisplay 对象和“截取屏幕截图”按钮的页面。我想从流视频中获取屏幕截图并保存它,但出现错误:

安全沙箱违规:BitmapData.draw:http://xxx/xxx.swf 无法访问 rtmp:/ /xxx/xx/xx/.没有授予访问权限的策略文件。

我从中捕获图像的网站的域和 rtmp 是相同的。

我正在使用 ImageSnapshot 类来捕获屏幕截图。这是负责截取屏幕截图的函数:

function takeSnapshot()
    {
        var imageSnap:ImageSnapshot=ImageSnapshot.captureImage(mainPlayer);
        var imageByteArray:ByteArray=imageSnap.data as ByteArray;
        var fileRef:FileReference=new FileReference();
        fileRef.save(imageByteArray, "screenshot.png");
    }

我还有一个带有 lin: 的跨域策略文件:

<allow-access-from domain="*" />

我将感谢您的帮助。

I've been looking for a solution to my problem for a while and didn't get the answer.
I have a page with a VideoDisplay object and a "Take screenshot" button. I would like to get the screenshot from the streaming video and save it but I'm getting an error:

Security sandbox violation: BitmapData.draw: http://xxx/xxx.swf cannot access rtmp://xxx/xx/xx/. No policy files granted access.

The domain of the website from which I'm capturing the image and the rtmp is the same.

I'm using ImageSnapshot class to capture the screenshot. This is the function responsible for taking the screenshot:

function takeSnapshot()
    {
        var imageSnap:ImageSnapshot=ImageSnapshot.captureImage(mainPlayer);
        var imageByteArray:ByteArray=imageSnap.data as ByteArray;
        var fileRef:FileReference=new FileReference();
        fileRef.save(imageByteArray, "screenshot.png");
    }

I've got also a cross-domain policy file with a lin:

<allow-access-from domain="*" />

I'd be grateful for your help.

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

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

发布评论

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

评论(2

金兰素衣 2024-11-14 16:02:07

看来有人已经弄清楚了。
他遇到了无法正确连接到流的问题
看看

It seems someone has figured it out.

He was having an issue with not connecting to the stream correctly
Have a look

十年九夏 2024-11-14 16:02:07

Flash Player 无法访问位图数据
或媒体的声谱数据
从 RTMP 源加载,尽管它
可以显示和播放位图
从这些服务器加载的声音。

Flash Player cannot access bitmap data
or sound spectrum data for media
loaded from RTMP sources, although it
can display and play bitmaps and
sounds loaded from these servers.

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