Last active
October 4, 2021 06:21
-
-
Save bitcity/d57440ca4240525439c1 to your computer and use it in GitHub Desktop.
Average frame colors of a movie into a single image
This file contains hidden or 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
ffmpeg -i <your movie file> -vf scale=1:1 <output folder>/%06d.png | |
convert +append <output folder>/* out.png | |
mogrify -scale x50\! out.png | |
Credit : https://www.reddit.com/r/dataisbeautiful/comments/3rb8zi/the_average_color_of_every_frame_of_a_given_movie/cwmn4q2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment