[Camera Support]: No sound on REOLINK E1 Pro #11514
-
Describe the problem you are havingWhen i play the live video stream in VLC all is well. Logs do not indicate an issue. tried to play it using Go2RTC plugin in home assistant, this is the below probe i get. Version0.13.2-6476F8A go2rtc 1.8.4 streams info Frigate config filelogger:
logs:
frigate.record.maintainer: debug
mqtt:
host: 192.168.50.26
user: username
detectors:
coral1:
type: edgetpu
device: pci:0
go2rtc:
streams:
mjpeg_cam: "ffmpeg:rtsp://user:[email protected]:554/h264Preview_01_main#video=h264#hardware"
cameras:
mjpeg_cam:
ffmpeg:
inputs:
- path: rtsp://user:[email protected]:554/h264Preview_01_main
roles:
- detect
- record
output_args:
record: preset-record-generic-audio-aac
record:
enabled: true Relevant log output2024-05-24 22:38:24.219381095 [INFO] Preparing Frigate...
2024-05-24 22:38:24.219396063 [INFO] Starting Frigate...
2024-05-24 22:38:25.367318223 [2024-05-24 22:38:25] frigate.app INFO : Starting Frigate (0.13.2-6476f8a)
2024-05-24 22:38:28.954279611 [2024-05-24 22:38:28] peewee_migrate.logs INFO : Starting migrations
2024-05-24 22:38:28.957512613 [2024-05-24 22:38:28] peewee_migrate.logs INFO : There is nothing to migrate
2024-05-24 22:38:28.962736083 [2024-05-24 22:38:28] frigate.app INFO : Recording process started: 461
2024-05-24 22:38:28.970010312 [2024-05-24 22:38:28] frigate.app INFO : go2rtc process pid: 89
2024-05-24 22:38:28.993237724 [2024-05-24 22:38:28] frigate.app INFO : Output process started: 472
2024-05-24 22:38:29.003232854 [2024-05-24 22:38:28] detector.coral1 INFO : Starting detection process: 470
2024-05-24 22:38:29.003237309 [2024-05-24 22:38:28] frigate.detectors.plugins.edgetpu_tfl INFO : Attempting to load TPU as pci:0
2024-05-24 22:38:29.010101071 [2024-05-24 22:38:29] frigate.detectors.plugins.edgetpu_tfl INFO : TPU found FFprobe output from your camera` {
"producers": [
{
"type": "RTSP active producer",
"url": "rtsp://192.168.x.x/Preview_01_main/",
"remote_addr": "192.168.x.x:554",
"user_agent": "go2rtc/1.9.2",
"sdp": "v=0\r\no=- 1562112078653562 1 IN IP4 192.168.x.x\r\ns=Session streamed by \"preview\"\r\nt=0 0\r\na=tool:BC Streaming Media v202210012022.10.01\r\na=type:broadcast\r\na=control:*\r\na=range:npt=now-\r\na=x-qt-text-nam:Session streamed by \"preview\"\r\nm=video 0 RTP/AVP 96\r\nc=IN IP4 0.0.0.0\r\nb=AS:8192\r\na=rtpmap:96 H264/90000\r\na=fmtp:96 packetization-mode=1;profile-level-id=640033;sprop-parameter-sets=Z2QAM6wVFKAoALWQ,aO48sA==\r\na=recvonly\r\na=control:track1\r\nm=audio 0 RTP/AVP 97\r\nc=IN IP4 0.0.0.0\r\nb=AS:8192\r\na=rtpmap:97 MPEG4-GENERIC/16000\r\na=fmtp:97 streamtype=5;profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1408\r\na=recvonly\r\na=control:track2\r\nm=audio 0 RTP/AVP 0\r\na=control:track3\r\na=rtpmap:0 PCMU/8000\r\na=sendonly",
"medias": [
"video, recvonly, H.264 High 5.1",
"audio, recvonly, MPEG4-GENERIC/16000",
"audio, sendonly, PCMU/8000"
],
"receivers": [
"96 H264, bytes=0, senders=1",
"97 MPEG4-GENERIC/16000, bytes=0, senders=1"
],
"senders": [
"0 PCMU/8000, bytes=0, receivers=1"
]
}
],
"consumers": [
{
"type": "probe",
"remote_addr": "192.168.20.14, 172.30.32.1, 172.30.32.2:56778",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36",
"medias": [
"video, sendonly, ALL",
"audio, sendonly, ALL",
"audio, recvonly, ANY"
],
"receivers": [
"0 ANY, bytes=0, senders=1"
],
"senders": [
"96 H264, bytes=0, receivers=1",
"97 MPEG4-GENERIC/16000, bytes=0, receivers=1"
]
}
]
}` Frigate statsNo response Operating systemProxmox Install methodDocker Compose Coral versionPCIe Network connectionWired Camera make and modelReolink E1 Pro, Camera details build: 2401092478 Hardware version: IPC_566SD54MP firmware: v3.1.0.3149_2401092478 Any other information that may be helpfulI see from ffprobe, that it is mpeg4/h264, not sure if that means i should change my config to mpeg4 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Your go2rtc line isn't copying or transcoding audio. Depending on what kind of audio your camera is sending, you may need something like:
Check the docs here. |
Beta Was this translation helpful? Give feedback.
-
perfect - thank you - got it working now |
Beta Was this translation helpful? Give feedback.
Your go2rtc line isn't copying or transcoding audio. Depending on what kind of audio your camera is sending, you may need something like:
#audio=copy#audio=aac
Check the docs here.