Home > Back-end >  how to extract a still image from a city public webcam feed.... can ffmpeg do this?
how to extract a still image from a city public webcam feed.... can ffmpeg do this?

Time:01-30

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:
enter image description here

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

  •  Tags:  
  • Related