-
Notifications
You must be signed in to change notification settings - Fork 144
Description
Hi
I'm trying to push WHIP to Mist from FFMPEG.
Mist version is 3.9 Free_aarch64
Encoder : RPI5 with Trixie 64 Bits
FFMPEG : 25/11/11 version for arm64
It works fine from OBS. I would like to use my own FFMPEG script for vMix output.
I have a basic FFMPEG test script. This script works perfectly with Broadcast Box ingest point [https://b.siobud.com/]
ffmpeg -hide_banner -re -i <my-input> -acodec libopus -ar 48000 -ac 2 \ -vcodec libx264 -profile:v high -preset ultrafast -tune zerolatency -threads 0 -bf 0 \ -authorization mytoken \ -f whip "http://192.168.0.72:8080/webrtc/whip"
I tried with and without the "-authorization" parameter, as described in the FFMPEG documentation : optional Bearer token for WHIP Authorization.
I can provide error messages from FFMPEG (quite long red lines) and Mist usually reports this
[11 Nov 2025, 19:18:10] MistOutWebRTC:whip (313298) [WARN] No SDP::MediaFormat found for encoding name RED. (../build/lib/sdp_media.cpp:582)
[11 Nov 2025, 19:18:10] MistOutWebRTC:whip (313298) [WARN] No SDP::MediaFormat found for encoding name ULPFEC. (../build/lib/sdp_media.cpp:582)
[11 Nov 2025, 19:18:10] MistOutWebRTC:whip (313298) [WARN] The selected profile-level-id was rewritten to 42e01f (../build/lib/sdp_media.cpp:1004)
and sometimes things like this too
[11 Nov 2025, 18:39:11] MistOutWebRTC:whip (312911) [WARN] Ending unfinished FU-A (../build/lib/rtp.cpp:1307)
[11 Nov 2025, 18:40:26] MistOutWebRTC:whip (312911) [WARN] Ending unfinished FU-A (../build/lib/rtp.cpp:1307)
[11 Nov 2025, 18:41:29] MistOutWebRTC:whip (312915) [WARN] Dropping invalid track 0: disappeared from metadata (../build/src/output/output.cpp:2252)
[11 Nov 2025, 18:41:29] MistOutWebRTC:whip (312915) [WARN] Dropping invalid track 1: disappeared from metadata (../build/src/output/output.cpp:2252)
I will also try from windows using NVENC and report if different.
Any idea what could be wrong ?
Let me know if you need more info or whatever
Best regards and thanks for the good work with Mist
G.