I would like to ask is there any option for getting dshow device format list on Windows.
For example on Linux I am able to get device format list on Linux via
v4l2-ctl -i /dev/video0 --list-formats
Index : 0
Type : Video Capture
Pixel Format: 'YUYV'
Name : YUV 4:2:2 (YUYV)
Index : 1
Type : Video Capture
Pixel Format: 'H264' (compressed)
Name : H.264
Index : 2
Type : Video Capture
Pixel Format: 'MJPG' (compressed)
Name : MJPEG
On Windows, I am able to get device list
ffmpeg -list_devices true -f dshow -i dummy
and device options
ffmpeg -f dshow -list_options true -i video="MY_DSHOW_DEVICE_NAME"
But I am not able to get format list, like on Linux via v4l2.
How can I get supported format list for dshow device via FFmpeg on Windows?