A #timelapse from one of my study sites in the #Uinta Mountains for the winter of 2021-22. I wonder what this area looks like now with how much snow #Utah is getting?
@jmunroe
I'd like to know what it looked like in about February of 1985. : )
@jmunroe Cool #timelapse. Might I recommend you blend frames together using ffmpeg. It will help reduce the flickering.
@MrPowerShell
Thanks for the suggestion! I'll give this a try...

@jmunroe

I've got a #PowerShell module that wraps FFMpeg that makes this easy:

Step 1: Take a bunch of photos
Step 2: Make the initial Timelapse:

dir $PathWithPhotos -filter *.jpg | Join-Media -OutputPath .\timelapse.mp4 -Timelapse

Step 3: Tweak the timelapse

Edit-Media -InputPath .\timelapse.mp4 -BlendFrame

@MrPowerShell
Awesome, thank you! Will be excited to give this a try.