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
| const sketcher = require('canvas-sketch-tool'); // not yet public | |
| const seedRandom = require('seed-random'); | |
| const settings = { | |
| // Output resolution, we use a high value for print artwork | |
| pixelsPerInch: 300, | |
| // US Letter size 8.5x11 inches | |
| dimensions: [ 8.5, 11 ], | |
| // all our dimensions and rendering units will use inches | |
| units: 'in' |
| //CC2018 | |
| document.addEventListener('paste', function(evt) { | |
| //Import SVG copied to clipboard from Illustrator | |
| //remove last hidden character that will otherwise break the import | |
| if(document.activeElement.nodeName!="TEXTAREA"){ | |
| var str=evt.clipboardData.getData('text/plain').slice(0, -1); | |
| var svg=project.importSVG(str) | |
| svg.clipped=false; | |
| svg.children[0].remove() | |
| svg.parent.insertChildren(svg.index,svg.removeChildren()); |
| #!/usr/bin/env bash | |
| set \ | |
| -o nounset \ | |
| -o pipefail \ | |
| -o errexit | |
| tags=$(doctl compute tag list --output json | jq -r '.[].name') | |
| aggregate=$(jq -n '{ "_meta": { "hostvars": { } } }') |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Shape selection</title> | |
| <!-- Vue for doing stuff--> | |
| <script src="https://unpkg.com/vue/dist/vue.js"></script> | |
| <!-- Paper for handling graphics --> | |
| <script src="https://unpkg.com/[email protected]/dist/paper-full.min.js"></script> | |
| <!-- Axios for making API calls --> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- | |
| Copyright (c) 2014-2017, Jan Bösenberg & Jürg Lehni | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| #! /bin/bash -ex | |
| # Convert Landsat 8 GeoTIFF images into RGB pan-sharpened JPEGs. | |
| # | |
| # Requirements: | |
| # * gdal http://www.mapbox.com/tilemill/docs/guides/gdal/ | |
| # * Dan Stahlke's https://github.com/gina-alaska/dans-gdal-scripts | |
| # * convert (image-magick) | |
| # | |
| # Reference info: |
| --- | |
| - name: Restart sshd | |
| service: | |
| name: ssh | |
| state: restarted | |
| become: yes |
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
| fs = require 'fs' | |
| remote = require 'remote' | |
| require 'fs-plus' | |
| Notify = require 'fs.notify' | |
| rx = require 'rx' | |
| module.exports = | |
| class LiveReload | |
| constructor: (dirs...) -> |