Skip to content

HCIT课程大作业:实现Android端的摄像头视频流实时传输

Notifications You must be signed in to change notification settings

WengYuehTing/android-camera-streamer

Repository files navigation

android-camera-streamer

The final project of the 2020 Spring Semester HCIT course, implementing real-time camera streaming to Android devices with third-party h264 encoder and RTSP streaming dependencies. The project is a lack of refactoring, containing some unnecessary code like gesture manipulations and UI controls etc.

Backend Decoder

import cv2
streaming_url = 'rtsp://{your ip}:{your port}/ch0'
cap = cv2.VideoCapture(streaming_url, cv2.CAP_FFMPEG)
while cap.isOpened():
  ret, frame = cap.read()
  # process frame here

About

HCIT课程大作业:实现Android端的摄像头视频流实时传输

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages