I've read multiple threads about streaming a Logitech C920 Webcam via raspberry pi with cvlc using basically this command:
cvlc v4l2:///dev/video1:chroma=h264:width=800:height=600 --sout…
I have a rpi 3 with the v2 camera running stretch 9.1. I've installed raspicam and uv4l according to the instructions on linux-projects.org.
I have the janus gateway setup on a separate box. I am trying to use the h264 hardware encoder and stream…
Problem:
I need to stream a video file from my RPi SD card over RTSP to display on a client computer. I'm new to RPi and Linux-based interfaces. I'm also new to RTSP and video streaming.
My hardware:
Raspberry Pi 3B running Debian, updated to…
Raspberry Pi 4, 4 GB
Rapsberry Pi OS Lite, 64 bit (2022-09-22)
Kernel 5.15.61-v8+
ffmpeg 4.3.4-0+deb11u1+rpt3
config.txt has the following relevant entry:
# Enable DRM VC4 V3D driver
dtoverlay=vc4-kms-v3d
According to my research, it would seem…
I have a 1080p webcam connected to a Raspberry Pi 4B over USB. The camera supports the following formats:
Raw : yuyv422 : YUYV 4:2:2
Compressed: mjpeg : Motion-JPEG
I would like to use ffmpeg to stream the footage…
TL;DR When using ffmpeg and the h264_v4l2m2m hardware-accelerated codec, how do I set the encoder options such as the bitrate and key frame interval?
Details
I am using these commands to capture raw video from the Pi camera, draw the time and the…
I'm trying to make a slideshow video from few (in this case 3) .jpgs. To do this, I'm using
ffmpeg -r 1/5 -i bat%03d.jpg -c:v libx264 -r 30 -pix_fmt yuv420p proba12.mp4
and actually it works on Windows (it plays every image for 5 seconds), but…
I made a video using the Raspberry Pi camera that came with a .h264 extension. I know that this file doesn't have the fps metadata associated with it. I found that playing it with omxplayer like this:
omxplayer myvideo.h264
resulted in highly…
I'm working on a python/pygame application, and i'm facing some difficulties when I try to capture a video from a usb camera (640x480) to a h264 encoded file, through OpenCV. Everything work fine with other codecs, DIVX or DX50, but I hope to…
I have captured video from a Raspberry Pi camera and saved to desktop as video.h264. VLC player opens with huge window. I cannot navigate the window to get to any settings.
It worked fine for a few playbacks but now has defaulted to the screen you…
I'm running Pi 4 with a 5 megapixel OV5647 camera attached to its camera port. I'm using motion to run motion detection, with the goal of running low-res stream at 2 frames per second for detection and ramping it up to 1080p 30 frames once motion is…
I'm trying to create a h264 stream from my Pi 3 and display it on an Android application.
After several attempts I found quite a simple solution:
raspivid -n -ih -t 0 -w 640 -h 480 -fps 25 -b 2000000 -l -o - | nc -l -p 5000
It works fine and I can…
I'm using RPi4 board with Raspbian on top of it
I wonder if there is a way to tell if any process currently using hardware accelerated video playback?
Ideally it would be nice to be able to say which process exactly is using it, but it's not…
I am early in the design phase for a camera array of ~12 units. Each unit will be comprised of an ArduCam camera module (possibly the OV9281) and a Raspberry Pi to compress the video data and send it on to a central PC (via USB) to be saved and…
I'm having some trouble getting H264 streaming to work. I've been digging around a little and it seems the problem is that UV4L is sending raw H264, which is not directly playable in Chrome. Does anyone know of any way to do this? Even in VLC with…