Was at a bit of a loss where to ask for help on this one, so figured would try my luck with you fine folk!
Im trying to work out a way to pull a still image from this public webcam feed:

CodePudding user response:
Use a tool like yt-dlp to try to get the video link
yt-dlp "https://www.sutherlandshire.nsw.gov.au/Outdoors/Beaches/Webcam-Wanda" --get-url
and then use the result with ffmpeg,
ffmpeg -i "https://cams.cdn-surfline.com/cdn-au/au-cronullawanda/chunklist.m3u8" -vframes 1 image.jpg
