将视频从多个摄像机流式传输到 RED5 服务器

发布于 2025-01-06 19:09:28 字数 89 浏览 1 评论 0原文

我想知道将视频从许多 bnc 摄像机(已连接到电脑)流式传输到 Red5 媒体服务器的最佳方式是什么?

感谢

Babel 的任何提示

I'm wondering what is the best way to stream video from many bnc cameras(already connected to a pc) to Red5 Media Server ?

Thanks fro any tips

Babel

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

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

发布评论

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

评论(1

删除→记忆 2025-01-13 19:09:28

以下代码将帮助您将摄像头视频流式传输到 red5 服务器。

    _camera = Camera.getCamera();
    _camera.setMode(320,240,10000);
    _camera.setQuality(0,85);
    _video = new Video();
    _video.x=0;
    _video.y=0;
    _video.height= _height;
    _video.width = _width;
    _video.attachCamera(_camera);
    uiComp.addChild(_video);

    _stream = new NetStream(_connection);
    _stream.attachCamera(_camera);
    _stream.publish(_streamName,"live");

当您运行闪光灯时,它会提示您从连接到您电脑的摄像机列表中选择任何摄像机。之后您可以将视频从摄像机实时流式传输到 red5 服务器。

如果您需要更多帮助,可以问我。干杯

The following code will be helpful for you to stream the camera video to the red5 server.

    _camera = Camera.getCamera();
    _camera.setMode(320,240,10000);
    _camera.setQuality(0,85);
    _video = new Video();
    _video.x=0;
    _video.y=0;
    _video.height= _height;
    _video.width = _width;
    _video.attachCamera(_camera);
    uiComp.addChild(_video);

    _stream = new NetStream(_connection);
    _stream.attachCamera(_camera);
    _stream.publish(_streamName,"live");

When you run the flash then it will prompt you to select any camera from the list of the cameras connected to your pc.After that you can stream the video live from the camera to the red5 server.

If you want more help, you can ask me.Cheers

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