All Projects → WebMaestroFr → rpi-mpeg-ts

WebMaestroFr / rpi-mpeg-ts

Licence: other
Stream MPEG-TS from Raspberry Pi Camera.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to rpi-mpeg-ts

watsor
Object detection for video surveillance
Stars: ✭ 203 (+372.09%)
Mutual labels:  camera, mpegts
raspindi
Raspberry Pi Camera NDI Source application
Stars: ✭ 118 (+174.42%)
Mutual labels:  camera
MJMediaPicker
A Custom Class to select media from camera ,video or photo library by just adding a single file
Stars: ✭ 15 (-65.12%)
Mutual labels:  camera
godot-trackball-camera
A short Godot addon that adds a TrackballCamera node without gimbal lock.
Stars: ✭ 22 (-48.84%)
Mutual labels:  camera
metal camera
iOS metal camera with GPU shaders.
Stars: ✭ 68 (+58.14%)
Mutual labels:  camera
three-render-objects
Easy way to render ThreeJS objects with built-in interaction defaults
Stars: ✭ 33 (-23.26%)
Mutual labels:  camera
EDSDK.NET
.NET wrapper for the Canon EOS camera SDK
Stars: ✭ 29 (-32.56%)
Mutual labels:  camera
Matthew-Lancaster
A Collect of Script For AutohotKey, DOS Command, VBScript, VB6, VB2008, Grub4Dos, Reg Keys, Win Powershell, SMTP, ARDUNIO, GITHUB Begin OCT 2018
Stars: ✭ 21 (-51.16%)
Mutual labels:  camera
Cat-Face-Detector-with-OpenCV-and-JavaFX
📹 A Small OpenCV (Open Source Computer Vision) Example, who has the ability to detect multiple cat faces at the same time 🐱
Stars: ✭ 24 (-44.19%)
Mutual labels:  camera
HopeLibrarySystem
厚朴工作室图书管理系统Hope books manage system📘
Stars: ✭ 42 (-2.33%)
Mutual labels:  camera
indi-3rdparty
INDI 3rd Party drivers repository
Stars: ✭ 90 (+109.3%)
Mutual labels:  camera
surfacecast
SurfaceCast: send background-subtracted depth camera video via GStreamer (with optional perspective correction)
Stars: ✭ 22 (-48.84%)
Mutual labels:  camera
Comora
A simple 2D camera for Monogame.
Stars: ✭ 71 (+65.12%)
Mutual labels:  camera
qrcode-decoder
🤘Tool for decoding qrcode by image,video or camera.
Stars: ✭ 78 (+81.4%)
Mutual labels:  camera
ionic-pwa-example-moment
A sample camera app implemented with PWA and Ionic 5.
Stars: ✭ 21 (-51.16%)
Mutual labels:  camera
restreamer
HbbTV 1.0/1.1 HTTP streaming proxy
Stars: ✭ 33 (-23.26%)
Mutual labels:  mpegts
Chafu
A photo browser and camera library for Xamarin.iOS
Stars: ✭ 36 (-16.28%)
Mutual labels:  camera
camera.zero
Combining Camera Zero with an Arducam 12MP camera, a Raspberry Pi Zero WH, a PiMoRoNi trackball breakout, and an Adafruit 16-LED NeoPixel ring will result in a neat little screenless camera that can be controlled with your thumb.
Stars: ✭ 26 (-39.53%)
Mutual labels:  camera
Nager.VideoStream
Get images from a network camera stream or webcam
Stars: ✭ 27 (-37.21%)
Mutual labels:  camera
xiaomi gdrive
Google drive loader for xiaomi smart ip camera
Stars: ✭ 70 (+62.79%)
Mutual labels:  camera

Raspberry Pi MPEG Transport Stream

Capture Raspberry Pi Camera output, convert and stream video, decode and play in browser.

Express, WebSockets, raspivid, avconv and JSMpeg.

Requirements

Installation

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get upgrade -y -q
sudo apt-get install git nodejs libav-tools -y

git clone https://github.com/WebMaestroFr/rpi-mpeg-ts.git
cd rpi-mpeg-ts
npm install

Start Capture

npm start

The video stream is then ready to play on port 8080.

Server-Side Module

The ./camera module is converting the h264 capture into a mpeg stream.

var Camera = require("./camera");
var camera = new Camera({width: 640, height: 480, vflip: true});

var mpegStream = camera.stream("mpeg", mpegSocket.broadcast);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].