-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add RPi ARM Docker image #10
Comments
I have the following problem when building the container? Any hints how to solve? pi@raspberrypi:~/Downloads/piriscope-master $ sudo docker build -t "piriscope:v1" . Step 4/7 : COPY piriscope_0.0.1-1_armhf.deb /tmp/piriscope_0.0.1-1_armhf.deb |
This project is a bit dilapidated, so there are some rough edges. There are layers needed to build the final piriscope docker image. If you have Ruby installed, most of these steps are easy. If you don't have Ruby, you can open the 1. Build the piriscope executable
This uses 2. Build the piriscope Debian package
This uses 3. Finally, build the piriscope docker image
This uses Let me know if you hit any other issues. |
When I run I am getting the following errors in periscope and stream doesn't work: Couldn't find H.264 parameter set(s) and Audio codec must be AAC-LC. Settings must be as listed here: https://assets.pscp.tv/help/PeriscopeProducer.pdf |
managed to make it work using the below command. you need to update some config settings in your code: raspivid -n -o - -t 0 -fps 30 -b 4000000 -w 1280 -h 720 | ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -f h264 -i - -vcodec copy -acodec aac -ab 128k -g 50 -strict experimental -f flv rtmp://or.pscp.tv:80/x/{{KEY}} |
dpkg
if Raspbian)docker run --restart always -d schmich/piriscope
ffmpeg
,x264
, ...)The text was updated successfully, but these errors were encountered: