[HW Accel Support]: Previously working on 0.10 Raspberry Pi 3 (32 bit) not working since upgrade to 0.11
See original GitHub issueDescribe the problem you are having
Upgraded to version 0.11 on an otherwise working docker instance on a raspberry pi 3 (32 bit) model B rev 1.2.
There’s a bunch of errors relating to FFMPEG as well as RTSP which I wasn’t getting on 0.10.
Frigate UI loads ok, but all the cameras have a green image.
I’m using a Coral USB too.
I’ve also tried disbaling hardware accelerating from the config and rebooting but still get the same green image.
I have gpu_mem: 512
set in /boot/config.txt
.
Version
0.11.0-3846a13
Frigate config file
mqtt:
host: mqtthost
user: user
password: pwd
# Optional: birdseye configuration
birdseye:
# Optional: Enable birdseye view (default: shown below)
enabled: False
# Optional: Width of the output resolution (default: shown below)
width: 1280
# Optional: Height of the output resolution (default: shown below)
height: 720
# Optional: Encoding quality of the mpeg1 feed (default: shown below)
# 1 is the highest quality, and 31 is the lowest. Lower quality feeds utilize less CPU resources.
quality: 8
# Optional: Mode of the view. Available options are: objects, motion, and continuous
# objects - cameras are included if they have had a tracked object within the last 30 seconds
# motion - cameras are included if motion was detected in the last 30 seconds
# continuous - all cameras are included always
mode: continuous
database:
path: frigate.db
detect:
fps: 5
detectors:
coral:
type: edgetpu
device: usb
ffmpeg:
hwaccel_args: -c:v h264_v4l2m2m
# NOTE: Can be overridden at the camera level
objects:
track:
- person
record:
enabled: True
retain:
days: 7
# Optional: Mode for retention. Available options are: all, motion, and active_objects
# all - save all recording segments regardless of activity
# motion - save all recordings segments with any detected motion
# active_objects - save all recording segments with active/moving objects
# NOTE: this mode only applies when the days setting above is greater than 0
mode: all
events:
retain:
default: 7
snapshots:
enabled: True
timestamp: True
retain:
default: 7
# Optional: RTMP configuration
# NOTE: Can be overridden at the camera level
rtmp:
# Optional: Enable the RTMP stream (default: True)
enabled: True
timestamp_style:
format: "%Y/%m/%d %H:%M:%S"
cameras:
doorbell:
ffmpeg:
inputs:
# main stream
- path: rtsp://user:pwd@camera1ipport/cam/realmonitor?channel=1&subtype=0
roles:
- record
# sub stream
- path: rtsp://user:pwd@camera1ipport/cam/realmonitor?channel=1&subtype=1
roles:
- detect
detect:
width: 720
height: 576
driveway:
ffmpeg:
inputs:
# main stream
- path: rtsp://user:pwd@camera2ip/1/h264major
roles:
- record
# sub stream
- path: rtsp://user:pwd@camera2ip/2/h264major
roles:
- detect
detect:
width: 640
height: 352
side:
ffmpeg:
inputs:
# main stream
- path: rtsp://user:pwd@camera3url/1/h264major
roles:
- record
# sub stream
- path: rtsp://user:pwd@camera3url/2/h264major
roles:
- detect
detect:
width: 640
height: 352
docker-compose file or Docker CLI command
version: "3.9"
services:
frigate:
image: blakeblackshear/frigate:stable
container_name: frigate
environment:
FRIGATE_RTSP_PASSWORD: "pwd"
TZ: Europe/London
devices:
- /dev/bus/usb:/dev/bus/usb # usb coral
network_mode: bridge
ports:
- 5000:5000
- 1935:1935 # RTMP feeds
privileged: true # this may not be necessary for all setups
restart: unless-stopped
shm_size: "128mb" # update for your cameras based on calculation above
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/frigate/config.yml:/config/config.yml:ro
- /CCTV:/media/frigate
- type: tmpfs # Optional: 0.5GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 500000000
Relevant log output
[2022-09-23 14:15:20] ffmpeg.side.detect ERROR : [rtsp @ 0x959e70] Unable to open RTSP for listening
[2022-09-23 14:15:20] ffmpeg.side.detect ERROR : rtsp://camera2url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:20] ffmpeg.side.record ERROR : [rtsp @ 0x132cef0] Unable to open RTSP for listening
[2022-09-23 14:15:20] ffmpeg.side.record ERROR : rtsp://camera2url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:20] watchdog.side INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:20] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:20] frigate.video ERROR : doorbell: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:20] frigate.video ERROR : doorbell: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:21] frigate.video ERROR : side: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:21] frigate.video ERROR : side: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:29] watchdog.driveway ERROR : Ffmpeg process crashed unexpectedly for driveway.
[2022-09-23 14:15:29] watchdog.driveway ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:29] ffmpeg.driveway.detect ERROR : [rtsp @ 0x901e70] Unable to open RTSP for listening
[2022-09-23 14:15:29] ffmpeg.driveway.detect ERROR : rtsp://camera3url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:29] ffmpeg.driveway.record ERROR : [rtsp @ 0x5dbef0] Unable to open RTSP for listening
[2022-09-23 14:15:29] ffmpeg.driveway.record ERROR : rtsp://camera3url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:29] watchdog.driveway INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:29] watchdog.driveway INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:29] watchdog.doorbell ERROR : Ffmpeg process crashed unexpectedly for doorbell.
[2022-09-23 14:15:29] watchdog.doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:29] ffmpeg.doorbell.detect ERROR : [rtsp @ 0x9a8e70] Unable to open RTSP for listening
[2022-09-23 14:15:29] ffmpeg.doorbell.detect ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=1: Cannot assign requested address
[2022-09-23 14:15:29] ffmpeg.doorbell.record ERROR : [rtsp @ 0x1b84ef0] Unable to open RTSP for listening
[2022-09-23 14:15:29] ffmpeg.doorbell.record ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=0: Cannot assign requested address
[2022-09-23 14:15:29] watchdog.doorbell INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:29] watchdog.doorbell INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:30] frigate.video ERROR : driveway: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:30] frigate.video ERROR : driveway: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:30] watchdog.side ERROR : Ffmpeg process crashed unexpectedly for side.
[2022-09-23 14:15:30] watchdog.side ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:30] ffmpeg.side.detect ERROR : [rtsp @ 0x2522e70] Unable to open RTSP for listening
[2022-09-23 14:15:30] ffmpeg.side.detect ERROR : rtsp://camera2url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:30] ffmpeg.side.record ERROR : [rtsp @ 0x1a38ef0] Unable to open RTSP for listening
[2022-09-23 14:15:30] ffmpeg.side.record ERROR : rtsp://camera2url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:30] watchdog.side INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:30] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:30] frigate.video ERROR : doorbell: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:30] frigate.video ERROR : doorbell: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:31] frigate.video ERROR : side: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:31] frigate.video ERROR : side: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:39] watchdog.driveway ERROR : Ffmpeg process crashed unexpectedly for driveway.
[2022-09-23 14:15:39] watchdog.driveway ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:39] ffmpeg.driveway.detect ERROR : [rtsp @ 0x1e20e70] Unable to open RTSP for listening
[2022-09-23 14:15:39] ffmpeg.driveway.detect ERROR : rtsp://camera3url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:39] ffmpeg.driveway.record ERROR : [rtsp @ 0x1646ef0] Unable to open RTSP for listening
[2022-09-23 14:15:39] ffmpeg.driveway.record ERROR : rtsp://camera3url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:39] watchdog.driveway INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:39] watchdog.driveway INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:39] watchdog.doorbell ERROR : Ffmpeg process crashed unexpectedly for doorbell.
[2022-09-23 14:15:39] watchdog.doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:39] ffmpeg.doorbell.detect ERROR : [rtsp @ 0x16e5e70] Unable to open RTSP for listening
[2022-09-23 14:15:39] ffmpeg.doorbell.detect ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=1: Cannot assign requested address
[2022-09-23 14:15:39] ffmpeg.doorbell.record ERROR : [rtsp @ 0x2309ef0] Unable to open RTSP for listening
[2022-09-23 14:15:39] ffmpeg.doorbell.record ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=0: Cannot assign requested address
[2022-09-23 14:15:39] watchdog.doorbell INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:39] watchdog.doorbell INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:40] frigate.video ERROR : driveway: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:40] frigate.video ERROR : driveway: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:40] watchdog.side ERROR : Ffmpeg process crashed unexpectedly for side.
[2022-09-23 14:15:40] watchdog.side ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:40] ffmpeg.side.detect ERROR : [rtsp @ 0x1778e70] Unable to open RTSP for listening
[2022-09-23 14:15:40] ffmpeg.side.detect ERROR : rtsp://camera2url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:40] ffmpeg.side.record ERROR : [rtsp @ 0x2323ef0] Unable to open RTSP for listening
[2022-09-23 14:15:40] ffmpeg.side.record ERROR : rtsp://camera2url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:40] watchdog.side INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:40] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:40] frigate.video ERROR : doorbell: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:40] frigate.video ERROR : doorbell: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:41] frigate.video ERROR : side: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:41] frigate.video ERROR : side: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:49] watchdog.driveway ERROR : Ffmpeg process crashed unexpectedly for driveway.
[2022-09-23 14:15:49] watchdog.driveway ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:49] ffmpeg.driveway.detect ERROR : [rtsp @ 0x630e70] Unable to open RTSP for listening
[2022-09-23 14:15:49] ffmpeg.driveway.detect ERROR : rtsp://camera3url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:49] ffmpeg.driveway.record ERROR : [rtsp @ 0xca8ef0] Unable to open RTSP for listening
[2022-09-23 14:15:49] ffmpeg.driveway.record ERROR : rtsp://camera3url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:49] watchdog.driveway INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:49] watchdog.driveway INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:49] watchdog.doorbell ERROR : Ffmpeg process crashed unexpectedly for doorbell.
[2022-09-23 14:15:49] watchdog.doorbell ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:49] ffmpeg.doorbell.detect ERROR : [rtsp @ 0xd1be70] Unable to open RTSP for listening
[2022-09-23 14:15:49] ffmpeg.doorbell.detect ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=1: Cannot assign requested address
[2022-09-23 14:15:50] ffmpeg.doorbell.record ERROR : [rtsp @ 0x11d2ef0] Unable to open RTSP for listening
[2022-09-23 14:15:50] ffmpeg.doorbell.record ERROR : rtsp://camera1url4/cam/realmonitor?channel=1&subtype=0: Cannot assign requested address
[2022-09-23 14:15:50] watchdog.doorbell INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:50] watchdog.doorbell INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:50] frigate.video ERROR : driveway: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:50] frigate.video ERROR : driveway: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:50] watchdog.side ERROR : Ffmpeg process crashed unexpectedly for side.
[2022-09-23 14:15:50] watchdog.side ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
[2022-09-23 14:15:50] ffmpeg.side.detect ERROR : [rtsp @ 0xe68e70] Unable to open RTSP for listening
[2022-09-23 14:15:50] ffmpeg.side.detect ERROR : rtsp://camera2url/2/h264major: Cannot assign requested address
[2022-09-23 14:15:50] ffmpeg.side.record ERROR : [rtsp @ 0x146cef0] Unable to open RTSP for listening
[2022-09-23 14:15:50] ffmpeg.side.record ERROR : rtsp://camera2url/1/h264major: Cannot assign requested address
[2022-09-23 14:15:50] watchdog.side INFO : Terminating the existing ffmpeg process...
[2022-09-23 14:15:50] watchdog.side INFO : Waiting for ffmpeg to exit gracefully...
[2022-09-23 14:15:50] frigate.video ERROR : doorbell: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:50] frigate.video ERROR : doorbell: ffmpeg process is not running. exiting capture thread...
[2022-09-23 14:15:51] frigate.video ERROR : side: Unable to read frames from ffmpeg process.
[2022-09-23 14:15:51] frigate.video ERROR : side: ffmpeg process is not running. exiting capture thread...
FFprobe output from your camera
probe of all 3 cameras:
root@cddaf609f52a:/opt/frigate# ffprobe rtsp://camera1url/cam/realmonitor?channel=1&subtype=0
[1] 1034
root@cddaf609f52a:/opt/frigate# ffprobe version 4.3.4-0+deb11u1 Copyright (c) 2007-2021 the FFmpeg developers
built with gcc 10 (Debian 10.2.1-6)
configuration: --prefix=/usr --extra-version=0+deb11u1 --toolchain=hardened --libdir=/usr/lib/arm-linux-gnueabihf --incdir=/usr/include/arm-linux-gnueabihf --arch=arm --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100
[rtsp @ 0x977570] method DESCRIBE failed: 404 Not Found
rtsp://camera1url/cam/realmonitor?channel=1: Server returned 404 Not Found
root@cddaf609f52a:/opt/frigate# ffprobe rtsp://camera3url/1/h264major
ffprobe version 4.3.4-0+deb11u1 Copyright (c) 2007-2021 the FFmpeg developers
built with gcc 10 (Debian 10.2.1-6)
configuration: --prefix=/usr --extra-version=0+deb11u1 --toolchain=hardened --libdir=/usr/lib/arm-linux-gnueabihf --incdir=/usr/include/arm-linux-gnueabihf --arch=arm --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100
[udp @ 0x247c200] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x248c550] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x249d070] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x24ad3b0] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[rtsp @ 0x2477570] RTP: dropping old packet received too late
[rtsp @ 0x2477570] max delay reached. need to consume packet
[rtsp @ 0x2477570] RTP: missed 60 packets
[rtsp @ 0x2477570] max delay reached. need to consume packet
[rtsp @ 0x2477570] RTP: missed 11 packets
[rtsp @ 0x2477570] max delay reached. need to consume packet
[rtsp @ 0x2477570] RTP: missed 1 packets
Input #0, rtsp, from 'rtsp://camera3url/1/h264major':
Metadata:
title : 10
Duration: N/A, start: 0.000000, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1920x1080, 15 fps, 15 tbr, 90k tbn, 30 tbc
Stream #0:1: Audio: pcm_alaw, 8000 Hz, 1 channels, s16, 64 kb/s
[1]+ Exit 1 ffprobe rtsp://camera1url/cam/realmonitor?channel=1
root@cddaf609f52a:/opt/frigate# ffprobe rtsp://camera2url/1/h264major
ffprobe version 4.3.4-0+deb11u1 Copyright (c) 2007-2021 the FFmpeg developers
built with gcc 10 (Debian 10.2.1-6)
configuration: --prefix=/usr --extra-version=0+deb11u1 --toolchain=hardened --libdir=/usr/lib/arm-linux-gnueabihf --incdir=/usr/include/arm-linux-gnueabihf --arch=arm --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libavresample 4. 0. 0 / 4. 0. 0
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100
[udp @ 0x1912330] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x1922670] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x1933200] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[udp @ 0x19434a0] attempted to set receive buffer to size 393216 but it only ended up set as 360448
[rtsp @ 0x190d570] UDP timeout, retrying with TCP
[rtsp @ 0x190d570] Could not find codec parameters for stream 0 (Video: h264, none, 1920x1080): unspecified pixel format
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, rtsp, from 'rtsp://camera2url/1/h264major':
Metadata:
title : 10
Duration: N/A, bitrate: 64 kb/s
Stream #0:0: Video: h264, none, 1920x1080, 90k tbr, 90k tbn, 180k tbc
Stream #0:1: Audio: pcm_alaw, 8000 Hz, 1 channels, s16, 64 kb/s
root@cddaf609f52a:/opt/frigate#
Operating system
Other Linux
Install method
Docker Compose
Network connection
Wired
Camera make and model
2 iGeek (camera2 and camera3 urls) and Amcrest AD410 (camera1 url)
Any other information that may be helpful
No response
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:8
Top Results From Across the Web
Hardware acceleration in Raspberry Pi OS 64 Bit still ...
For example, the 3D is already accelerated through KMS. It's possible that the VLC changes already work in 64bit, but I have not...
Read more >Open On-Chip Debugger: OpenOCD User's Guide
What is OpenOCD? The Open On-Chip Debugger (OpenOCD) aims to provide debugging, in-system program- ming and boundary-scan testing for embedded target ...
Read more >2022-03-190.13.1 brings SDL 2 support - Impressive
And if you're using a Raspberry Pi of generation 1 to 3, do yourself a favor and ... While Impressive has been adapted...
Read more >Raspberry Pi Video Looper
Make your Raspberry Pi loop a video file endlessly and seamlessly, without showing any logo or breaks. A simple, cheap and reliable media...
Read more >FFmpeg
While a few problems remain with respect to LFE channel and 32 bit sample handling, ... Generic OpenMAX IL encoder with support for...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Glad that is working for you. We can close this for now and if we start seeing more of the same posts then I’ll pin this issue 👍
@NickM-27 ok, 64 bit with hwaccel works a.o.k with the exact same docker compose and config! Don’t know whether to leave the issue up though for those on 32 bit?