Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
| #!/bin/bash | |
| SUB=<mysub> | |
| RG=<myrg> | |
| API_VER=2021-01-01 | |
| HOST=https://management.usgovcloudapi.net | |
| BUCKET=<mybucket> | |
| BT=<mybearertoken> | |
| URL="$HOST/subscriptions/$SUB/resourceGroups/$RG/providers/Microsoft.Storage/storageAccounts/$BUCKET/blobServices/default?api-version=$API_VER" |
| export GITHUB_USER=magickatt | |
| export GITHUB_TOKEN=secret | |
| export GITHUB_REPOSITORY=magickatt/ContainerisingLegacyApplicationsTalk | |
| git clone https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} |
| #!/bin/bash | |
| # Run without args to see usage | |
| ##### Configuration ##### | |
| # Maximum shakiness and accuracy | |
| DETECT_OPTS="shakiness=10:accuracy=15" | |
| # Fish-eye correction for GoPro H3+B 16:9 Wide | |
| # http://stackoverflow.com/questions/30832248/is-there-a-way-to-remove-gopro-fisheye-using-ffmpeg/40659507#40659507 |
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
| /** | |
| * according to http://www.adafruit.com/datasheets/UG-2864HSWEG01.pdf Chapter 4.4 Page 15 | |
| */ | |
| void ssd1306Init(void) | |
| { | |
| i2c_OLED_send_cmd(0xAE); // Set display OFF | |
| i2c_OLED_send_cmd(0xD4); // Set Display Clock Divide Ratio / OSC Frequency | |
| i2c_OLED_send_cmd(0x80); // Display Clock Divide Ratio / OSC Frequency | |