so I am trying to make a streamer that streams video from one computer to another (or the same one, for now) on my LAN. I need it to use as little bandwidth as possible so I am trying to encode in h264. I'm having trouble doing this, and I don't really know where to start. Right now it is encoded in jpg, and it is sending frame by frame. I am aware, however, that this is very inefficient and it consumes a lot of bandwidth. This is my current receiver code.
import cv2
import socket
import _pickle
import time
host = "192.168.1.196"
port = 25565
boo = True
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # declares s object with two parameters
s.bind((host, port)) # tells my socket object to connect to this host & port "binds it to it"
s.listen(10) # tells the socket how much data it will be receiving.
conn, addr = s.accept()
buf = ''
while boo:
pictures = conn.recv(128000) # creates a pictures variable that receives the pictures with a max amount of 128000 data it can receive
decoded = _pickle.loads(pictures) # decodes the pictures
frame = cv2.imdecode(decoded, cv2.IMREAD_COLOR) # translates decoded into frames that we can see!
cv2.imshow("recv", frame)
if cv2.waitKey(1) & 0xFF == ord("q"): # wait until q key was pressed once and
break
And here is my current client code (sender):
import cv2
import numpy as np
import socket
import _pickle
from cv2 import *
host = "192.168.1.196"
port = 25565
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # declares s object with two parameters
s.connect((host, port)) # connects to the host & port
cap = cv2.VideoCapture(1)
cv2.cv.CV_FOURCC('H','2','6','4')
while cap.isOpened(): # while camera is being used
ret, frame = cap.read() # reads each frame from webcam
cv2.imshow("client", frame)
if ret:
encoded = _pickle.dumps(cv2.imencode("fourcc", frame)[1]) # encoding each frame, instead of sending live video it is sending pictures one by one
s.sendall(encoded)
if cv2.waitKey(1) & 0xFF == ord("q"): # wait until key was pressed once and
break
cap.release()
cv2.destroyAllWindows()
I just need some help on how to encode the video and decode it in h264.