I had this working but altered some settings and am now stuck...
I have nimble streamer running in docker on my Mac and am able to connect via RTSP both for pushing and pulling without issue using ffmpeg & ffplay but when I try to connect to RTMP it fails.
For RTMP I get failures:
> ffmpeg -v debug -f avfoundation -framerate 30 -i "0:0" -vcodec libx264 -tune zerolatency -s 500:500 -f flv "rtmp://localhost:1935/app/test flashver=FMLE/3.0\20(compatible;\20FMSc/1.0) live=true pubUser=user pubPasswd=pwd"
> ffplay -v debug rtmp://localhost:1935/app/test
The following works for RTSP:
> ffmpeg -f avfoundation -framerate 30 -i "0:0" -pix_fmt uyvy422 -vcodec libx264 -tune zerolatency -s 500:500 -f rtsp -rtsp_transport tcp rtsp://user:pwd@localhost:554/dev/test
> ffplay rtsp://localhost:554/dev/test
In WMSPanel I have the app setup with the username/password & allows rtmp & rtsp. I've also setup the interfaces for both with Any/1935 for RTMP & Any/554 for RTSP.