-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Base functionality to create movies from images (#776)
* ADD: Adding utility to combine images into a movie using moviepy * ENH: Adding moviepy to readme as optional dependency and to CI file * ENH: Adding moviepy to docs build environment as well * ENH: Resolving requests for modifications * ENH: PEP8 errors * ENH: Changing test to use images on github repo
- Loading branch information
1 parent
23dc947
commit 0025a74
Showing
6 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,8 @@ | |
'cleanup_files', | ||
'is_gunzip_file', | ||
'pack_gzip', | ||
'unpack_gzip' | ||
'unpack_gzip', | ||
'generate_movie' | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ dependencies: | |
- lazy_loader | ||
- cmweather | ||
- arm-test-data | ||
- moviepy | ||
- pip: | ||
- mpl2nc | ||
- metpy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ dependencies: | |
- pip | ||
- shapely<1.8.3 | ||
- arm-test-data | ||
- moviepy | ||
- pip: | ||
- mpl2nc | ||
- lazy_loader | ||
|