pistreaming icon indicating copy to clipboard operation
pistreaming copied to clipboard

A little demo of streaming the Pi's camera to web browsers

Results 27 pistreaming issues
Sort by recently updated
recently updated
newest added

I cloned the repository and ran the code the code is running fine and all the messages are also being printed but when i open the webpage from the link...

Hi, Good work there. I needed to know how could I enhance your repo in order to stream the Video along with its audio???

The script as it is now does not fully close. A thread named `WebSocketManager` is still running. I found that adding the command `websocket_server.server_close()` before `websocket_server.shutdown()` solves this issue.

Hello Dave, Your PiStreaming is working superbly :-) thank you. I would like to be able to take a still image/photo, would that be possible? Using Raspistill doesn't want to...

dear author,i want to save a video to my hard drive,What should I do? i saw this code: buf = self.converter.stdout.read1(32768) and i think i should write the buf to...

Hey guys, is there an easy way to autostart the script at reboot? already tried the crontab. `@reboot python3 /home/pi/pistreaming/server.py` but this is not working.

It is noted that the repo includes `JSMPEG project` for image display. What the specific version is chosen? Is the latest version of `JSMEPG` usable?

pi@raspberrypi:~/pistreaming $ python3 server.py Initializing camera Initializing websockets server on port 8084 Initializing HTTP server on port 8082 Initializing broadcast thread Spawning background conversion process Starting recording Starting websockets thread...

I have been attempting to run server.py with a resolution of 1920x1080 and a low resolution of 5 fps on a Pi Zero. No problem is encountered with the script...

import os import RPi.GPIO as GPIO from picamera import PiCamera from time import sleep GPIO.setwarnings(False) GPIO.setmode(GPIO.BCM) GPIO.setup(17,GPIO.IN, pull_up_down = GPIO.PUD_UP )#接上轻触开关,一个脚接地 GPIO.setup(18,GPIO.OUT) #接LED灯 GPIO.add_event_detect(17, GPIO.RISING) # 在通道上添加上管脚触发方式 flag = 1...