Skip to main content
Participant
January 22, 2022

P: Dropped frames in time lapse video

  • January 22, 2022
  • 3 replies
  • 542 views

I recently upgraded from Lightroom 6 to Classic (11.1) and I have been attempting to create a time lapse video. When I export and view a video (made with 400 photos) I see what appears to be dropped frames in the video. They appear as black flashes. It occurs the most when I export using a user template that is set for 30 frames per second. Slower FPS speeds still have flashes but they are only at the beginning 2 seconds of the video. This does not happen with version 6 using the same templates. I have searched the web for a solution to no avail.  I have tried recreating the template from scratch and had the same results.

 

Steps to recreate:

From the Library - select the photos for the time lapse

Go to Slideshow

Select the user template

Click Export Video

Select Video Preset 720P (other sizes have the same issue)

Expected result is a video that show all photos selected

Actual result: A video with numerous black flashes

 

OS: Windows 10 with latest maintenance applied

LRC version: 11.1 and previous versions since I originally installed 10.3

 

This topic has been closed for replies.

3 replies

Rikk Flohr_Photography
Community Manager
April 20, 2022

Setting status to investigating

Rikk Flohr: Adobe Photography Org
sumeetch
Adobe Employee
Adobe Employee
April 20, 2022

Thanks for reporting.

An existing Bug is already present for the same. The team is looking into the issue.

 

Thanks !

Regards, Sumeet
johnrellis
Legend
January 23, 2022

From posts here over the last many years, it seems that many (most?) people no longer try to create timelapse videos in LR.  The LRTimelapse plugin seems like a popular alternative:

https://lrtimelapse.com/

RGVAuthor
Participant
January 27, 2022

Thanks for the pointer.  I have read about and done some research into LRTimelapse.  I don't do enough time lapse to justify the cost.  I posted this bug because I feel that later revisions of software should have the same (or better) function as their predecessors unless otherwise documented. 

 

johnrellis
Legend
January 27, 2022

"I posted this bug because I feel that later revisions of software should have the same (or better) function as their predecessors unless otherwise documented."

 

I think the change in LR that degraded the ability to make timelapse videos occurred a number of years ago -- forum archaeology would probably reveal some posts, if you searched hard enough, but probably not worth the effort.

 

"I don't do enough time lapse to justify the cost."

 

You could probably use Photoshop to make the videos -- it's included in the cost of your LR Classic subscription. I did it once, though I got frustrated with the inaccuracy of the various recipes I found about how to do it.  As with most things in PS, it's a steeper learning curve.

 

There are lots of explanations out there about how to use the free command-line "ffmpeg" too.  I've got a shell-script that makes a timelapse from my weathercam, and I recall that it was moderately painful to make it work.  Here's the script, which I haven't run for several years:

#!/bin/sh
#-------------------------------------------------------------------------------
# 
# usage: make-video.sh <dir> <source-rate> <output-file>
# 
# Makes a time-lapse video from the .jpg files in <dir>, writing
# the video to <output-file>.  A <source-rate> of 30 will use all
# the .jpgs at 30 frames-per-second. A <source-rate> of 60 will use every
# other frame at 30 frames-per-second.
# 
#-------------------------------------------------------------------------------

if [ $# -lt 3 ]; then
    echo "usage: make-videosh <dir> <source-rate> <output-file>" > /dev/stderr
    exit 1
    fi
dir=$1
sourceRate=$2
outputFile=$3

ffmpeg -r $sourceRate -pattern_type glob -i "$dir/*.jpg" \
    -r 30 -s 3840x2160 -vcodec libx265 -crf 26 -tag:v hvc1 "$outputFile"