Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schmich/piriscope
Livestream to Periscope from the Raspberry Pi
https://github.com/schmich/piriscope
ffmpeg live-streaming periscope raspberry-pi raspberry-pi-camera raspivid streaming v4l2 video-streaming webcam
Last synced: 4 months ago
JSON representation
Livestream to Periscope from the Raspberry Pi
- Host: GitHub
- URL: https://github.com/schmich/piriscope
- Owner: schmich
- License: mit
- Created: 2017-04-14T06:20:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T15:06:50.000Z (almost 8 years ago)
- Last Synced: 2024-09-29T00:41:01.066Z (4 months ago)
- Topics: ffmpeg, live-streaming, periscope, raspberry-pi, raspberry-pi-camera, raspivid, streaming, v4l2, video-streaming, webcam
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 13
- Watchers: 3
- Forks: 4
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Piriscope
Livestream to [Periscope](https://www.periscope.tv/) from the [Raspberry Pi](https://www.raspberrypi.org/products/).
## Hardware Setup
You will need the following:
- Raspberry Pi
- [Raspberry Pi Camera Module v2](https://www.raspberrypi.org/products/camera-module-v2/) ([shop](https://www.adafruit.com/product/3099))
- Raspberry Pi Zero v1.3 Camera Cable ([shop](https://www.adafruit.com/product/3157))
- Storage## Software Setup
Piriscope is designed to work with [Raspbian](https://www.raspberrypi.org/downloads/raspbian/).
- [Install Raspbian](https://www.raspberrypi.org/documentation/installation/installing-images/)
### As a Raspbian Package (.deb)
```
apt-get install x264 v4l-utils
sudo modprobe bcm2835-v4l2
echo bcm2835-v4l2 | sudo tee -a /etc/modules
curl -LO https://github.com/ccrisan/motioneye/wiki/precompiled/ffmpeg_3.1.1-1_armhf.deb
dpkg -i ffmpeg_3.1.1-1_armhf.deb
curl -LO ...
dpkg -i piriscope-0.0.1-1_armhf.deb
```### As a Docker Container
[Install Docker](https://www.raspberrypi.org/blog/docker-comes-to-raspberry-pi/) and run the container.
```
curl -sSL https://get.docker.com | sh
docker run -d --privileged --restart always -v /dev/video0:/dev/video0 schmich/piriscope:1.0.0 -k
```### As a Standalone Program
```
apt-get install x264 v4l-utils
sudo modprobe bcm2835-v4l2
echo bcm2835-v4l2 | sudo tee -a /etc/modules
curl -LO https://github.com/ccrisan/motioneye/wiki/precompiled/ffmpeg_3.1.1-1_armhf.deb
dpkg -i ffmpeg_3.1.1-1_armhf.deb
curl -LO ...
piriscope -k ...
```## License
Copyright © 2017 Chris Schmich
MIT License. See [LICENSE](LICENSE) for details.