Questions tagged [raspivid]
11 questions
2
votes
1 answer
Raspberry Pi libcamera-vid to Youtube
I'm setting up a nature cam using a Raspberry Pi 4 livestreaming to Youtube. I can live stream video to Youtube using:
raspivid -o - -t 0 -w 1280 -h 720 -fps 25 -b 4000000 -g 50 | ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f vs16le -ac 2 -i…

lemmyBarnet
- 59
- 1
- 8
2
votes
2 answers
How to take images with Raspberry Pi since "raspistill" and "raspivid" are deprecated
Since the Raspberry Pi is transitioning from using the old raspistill and raspivid to the newer libcamera how should I take an image now if I don't want to use the CLI nor C as programming language? I can't find any wrapper for libcamera in any…

jonashoen
- 23
- 4
2
votes
1 answer
Raspivid low latecy streaming and saving
I'm trying to save and stream the Raspi Camera trough wifi at 10FPS with a Rpi Zero W (no serverX)
I need to save in full frame and high resolution that suppose to use MJPEG codec.
That is done by this command :
raspivid -md 2 -w 2592 -h 1944 -fps…

Dronotique
- 21
- 3
1
vote
0 answers
Youtube Livestream - ffmpeg error: av_interleaved_write_frame(): End of File
I'm using a Raspberry Pi 3B (OS: Raspian) to livestream an attached camera feed to YouTube using the following command in a python script(I removed the livestream secret key):
raspivid -o - -t 0 -vf -hf -fps 30 -b 6000000 | ffmpeg -re -ar 44100 -ac…

mitch401
- 11
- 2
1
vote
0 answers
Native raspberry 64 OS raspivid: cannot execute binary file
OS:
Linux raspberrypi 5.10.35-v8+ #1417 SMP PREEMPT Fri May 7 17:44:55 BST 2021 aarch64 GNU/Linux
Reinstall doesn't work at all
Can't execute rasp:
/opt/vc/bin/raspivid: /opt/vc/bin/raspivid: cannot execute binary file
ffmpeg works fine.

Irina
- 939
- 1
- 8
- 26
1
vote
0 answers
/dev/video0: Invalid argument
we are trying to connect GoPro Hero 5 black to raspberri pi-4 using HDMI to CSI2 convertor.
but we are facing a problem, like whenever we try to stream using ffmpeg or any live video software we are unable to connect the device and it give the…

KPB
- 21
- 1
- 2
1
vote
0 answers
I can get my video stream with gstreamer from command line with gst-launch-1.0 udpsrc but how can I take it with opencv videoCapture()
I can get my video stream with gstreamer from command line with gst-launch-1.0 udpsrc but how can I take it with opencv videoCapture()
In my raspberry pi 3 I am streaming with raspivid and gst-launch-1.0 to my windows computer
In my windows I can…

ccconcerns
- 13
- 3
0
votes
0 answers
Purple + White Bar in Right Image With Stereo Side By Side Recording + Streaming
I'm using a StereoPi v2 Camera Kit and running the OpenCV OS that came with the pi.
I'm running into an issue where there is a purple and white flickering column in the right image of a side by side stereo recording. This happens with both raspivid,…

Skippy2626
- 1
- 2
0
votes
0 answers
Want to launch RASPIVID at startup (preview/display to HDMI) abd be able to stop RASPIVID (either by keypress or button press)
I have tried multiple ways of launching "raspivid -t 0" at startup, but there is never a decent way to stop or kill it?
Has anyone actually solved this issue?
CTRL+C only works is if I launch raspivid from a terminal, and then CTRL+C from that…

pjeigh
- 15
- 4
0
votes
1 answer
How can I improve the frame rate of my Raspberry Pi to YouTube stream?
I am using a Raspberry Pi 4 2GB to live stream to YouTube.
The performance is pretty poor at the moment as I am trying to go through terminal and I feel the setting's are not correct. Performance is OK however if I go directly through YouTube…

RDowns
- 651
- 1
- 10
- 35
0
votes
1 answer
Pass ffmpeg Stream to OpenCV
I would like to use the redirection operator to bring the stream from ffmpeg to cv2 so that I can recognize or mark the faces on the stream and redirect this stream again so that it runs under another stream.
One withoutfacedetect and One…

Georg
- 3
- 3