什么是流媒体视频?

发布于 2024-10-28 19:52:27 字数 220 浏览 1 评论 0原文

我在代码中执行此操作,从相机捕获帧,打开 UDP 连接,然后发送帧数据:

    UDP_Client.Connect(Host, Port)
    Dim sendBytes As Byte() = Data
    UDP_Client.Send(sendBytes, sendBytes.Length)

我每 400 毫秒执行一次。 是流媒体视频吗?

I do this in my code, capturing a frame from camera, opening a UDP connection, and sending frame data:

    UDP_Client.Connect(Host, Port)
    Dim sendBytes As Byte() = Data
    UDP_Client.Send(sendBytes, sendBytes.Length)

I do it every 400 ms.
Is it streaming video?

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

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

发布评论

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

评论(1

坦然微笑 2024-11-04 19:52:27

流媒体基本上是播放来自网络源的视频,您可以流式传输实时视频或预先录制的视频(如 YouTube)。

您的源在 400 毫秒时为 2.5 fps,但从技术上讲,即使 0.0001 fps 仍然是视频源,只是非常慢。视频的定义是什么,一系列静止图像,所以只要图片确实更新就可以认为是视频。

2.5fps 是一个好的视频源吗?也许不是,但它仍然是视频。

Streaming is basically playing a video from a network source, you can stream live video or pre-recorded video ala YouTube.

Your source at 400ms is 2.5fps, but technically speaking even 0.0001fps is still a video feed just very slow. What is the definition of a video, a sequence of still images, so as long as the picture does update it can be considered a video.

Is 2.5fps a good video feed, maybe not but it is still video.

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