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
| #!/bin/bash | |
| # | |
| # NOTE: This script is shared in a GitHub gist at | |
| # https://gist.github.com/wonderbird/c5391943d965cea865983fd224afbe88 | |
| # | |
| # Convert a rendered screen recording to 1920x1080 HD format, then | |
| # extract the audio track to a separate MP3 file and finally, | |
| # transcribe the audio to get a text file and subtitles. | |
| # | |
| # The input file is ususally the output of DaVinci Resolve. |
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
| #!/bin/sh | |
| # | |
| # Rescale and compress PNG images. | |
| # | |
| # Source: https://gist.github.com/wonderbird/b210877179e95ef1145b9d9216167336 | |
| # | |
| # For every image in all subfolders of SOURCE: | |
| # | |
| # - Rescale image to a width and height of at most 1024 px. | |
| # - Reduce colors to 256 with an optimized palette. |