Skip to content

Commit

Permalink
Add boat time-lapse
Browse files Browse the repository at this point in the history
  • Loading branch information
153957 committed Jul 9, 2019
1 parent 359ff08 commit be0c812
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions scripts/D700_160813_1_2.py
@@ -0,0 +1,28 @@
import os

import ffmpeg

from time_lapse import output

NAME = os.path.basename(__file__).replace('.py', '')
PATTERNS = [
'/Volumes/Falcon/tl_temp/160813_1_Boot/*.tiff', # ADL_216004 - ADL_216758
'/Volumes/Falcon/tl_temp/160813_2_Boot/*.tiff', # ADL_216765 - ADL_217317
]
# poster: ADL_216065


def make_movie():
inputs = [
ffmpeg
.input(pattern, pattern_type='glob', framerate=30)
.filter_('deflicker', mode='pm', size=3)
for pattern in PATTERNS
]
input = ffmpeg.concat(*inputs)

output.create_outputs(input, NAME, verbose=True)


if __name__ == '__main__':
make_movie()

0 comments on commit be0c812

Please sign in to comment.