什么是流媒体视频?
我在代码中执行此操作,从相机捕获帧,打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
流媒体基本上是播放来自网络源的视频,您可以流式传输实时视频或预先录制的视频(如 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.