【发布时间】:2023-03-31 12:14:01
【问题描述】:
我正在尝试使用 python 将视频源从 Raspberry Pi 流式传输到我的机器。因此,我需要将一个套接字连接到服务器。 (在执行这些之前,直接在 192.168.0.6:8081 从 RPi 流式传输视频)
在我的电脑上执行这段代码:
import numpy as np
import cv2
import socket
class VideoStreamingTest(object):
def __init__(self):
self.server_socket = socket.socket()
self.server_socket.bind(('192.168.0.6', 8081))
self.server_socket.listen(0)
self.connection, self.client_address = self.server_socket.accept()
self.connection = self.connection.makefile('rb')
self.streaming()
def streaming(self):
try:
print ("Connection from: ", self.client_address)
print ("Streaming...")
print ("Press 'q' to exit")
stream_bytes = ' '
while True:
stream_bytes += self.connection.read(1024)
first = stream_bytes.find('\xff\xd8')
last = stream_bytes.find('\xff\xd9')
if first != -1 and last != -1:
jpg = stream_bytes[first:last + 2]
stream_bytes = stream_bytes[last + 2:]
#image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_GRAYSCALE)
image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_UNCHANGED)
cv2.imshow('image', image)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
finally:
self.connection.close()
self.server_socket.close()
if __name__ == '__main__':
VideoStreamingTest()
在编译过程中会引发此错误:
Traceback (most recent call last):
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 43, in <module>
VideoStreamingTest()
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 11, in __init__
self.server_socket.bind(('192.168.0.6', 8081))
OSError: [WinError 10049] The requested address is not valid in its context
编辑:这也是给
Traceback (most recent call last):
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 47, in
<module>
VideoStreamingTest()
File "C:/Users/tiger/Desktop/take_the_stream_from_pi.py", line 17, in
__init__
self.connection = self.socket.create_connection(('192.168.0.6', 8081))
AttributeError: 'socket' object has no attribute 'create_connection'
所以我尝试用 connect_ex 替换 create_connection,但它仍然给出错误.. :(
class VideoStreamingTest(object):
def __init__(self):
#self.server_socket = socket.socket()
#self.server_socket.bind(('192.168.0.6', 8081))
#self.server_socket.listen(0)
#self.connection, self.client_address = self.server_socket.accept()
#self.connection = self.connection.makefile('rb')
#self.streaming()
self.socket = socket.socket()
self.connection = self.socket.create_connection(('192.168.0.6', 8081))
#self.socket.connect(('192.168.0.6', 8081))
self.streaming()
def streaming(self):
try:
#print ("Connection from: ", self.client_address)
print ("Streaming...")
print ("Press 'q' to exit")
stream_bytes = ' '
while True:
stream_bytes += self.connection.read(1024)
first = stream_bytes.find('\xff\xd8')
last = stream_bytes.find('\xff\xd9')
if first != -1 and last != -1:
jpg = stream_bytes[first:last + 2]
stream_bytes = stream_bytes[last + 2:]
#image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_GRAYSCALE)
image = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_UNCHANGED)
cv2.imshow('image', image)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
finally:
self.connection.close()
self.socket.close()
if __name__ == '__main__':
VideoStreamingTest()
【问题讨论】:
-
192.168.0.6是远程 IP 地址,对吗?socket.bind()需要分配给本地主机的地址。 -
ya它的树莓派IP地址
标签: python sockets video camera stream