Skip to content

Commit

Permalink
Add new time-lapse movie
Browse files Browse the repository at this point in the history
  • Loading branch information
153957 committed Apr 6, 2024
1 parent 03b3ed3 commit 4c4d85c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/150409_ARN_Cloud_chamber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from pathlib import Path

from time_lapse import make_movie, thumbnail

NAME = Path(__file__).stem
PATTERN = '/Volumes/Twin suns/150409_ARN_1//*.tif' # ARN_091385 - ARN_091699
POSTER = '/Volumes/Twin suns/150409_ARN_1/ARN_091552.tif'


if __name__ == '__main__':
filters = [
('crop', {'w': '1920', 'h': '1280'}),
('tblend', {'all_mode': 'lighten', 'all_opacity': '1'}),
('tblend', {'all_mode': 'lighten', 'all_opacity': '0.75'}),
]
make_movie(NAME, PATTERN, 24, 3, watermark=True, verbose=False, dryrun=False, filters=filters)
thumbnail.create_thumbnail(NAME, Path(POSTER))

0 comments on commit 4c4d85c

Please sign in to comment.