ffmpeg -r 20 -i "video/img (%d).png" -q:v 1 -b:v 1500k "../timelapse.avi"
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
function getPluginInfo(lang){ | |
pluginInfo = new Object(); | |
pluginInfo.id = "onlyani"; | |
pluginInfo.name = "onlyani"; | |
pluginInfo.ext = "json"; | |
pluginInfo.encoding = "utf8"; | |
pluginInfo.capabilities = new Object(); | |
pluginInfo.capabilities.canRotate = true; | |
pluginInfo.capabilities.canTrim = true; | |
pluginInfo.capabilities.canShapePad = true; |
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
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
"ControlScroll" | |
], | |
"installed_packages": | |
[ | |
"Better JavaScript", | |
"Chain of Command", |
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
var haveAFrame; | |
var symbolName = ""; | |
var symbolFrames = []; | |
var repeatTest = []; | |
var frameIndex = 1; | |
var symbolPivot = {}; | |
var symbolAnimation = null; | |
var boot = false; | |
var resp = { | |
sprites:{} |
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
function create() { | |
// console.log(game.add) | |
var rand = function(min, max){ | |
if(!min) min = 0; | |
if(!max) max = 100; | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
Deploying your app using git subtree
allows the use of GitHub Pages. Your gh-pages
branch will contain the files from dist
.
- If not already available, install git-subtree.
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
var dragonBones; | |
(function (dragonBones) { | |
(function (display) { | |
var PhaserDisplayBridge = (function () { | |
function PhaserDisplayBridge() { | |
} | |
PhaserDisplayBridge.prototype.getVisible = function () { | |
return this._display ? this._display.visible : false | |
}; |
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
#!/usr/bin/env python | |
import hashlib | |
import hmac | |
import time | |
import requests | |
import datetime | |
# Q. Do you have A Websocket API? | |
# A. Yes, and we strongly recommend you to use it. Please, check our JavaScript websocket implementation for our WebSocket API here: | |
# https://github.com/blinktrade/frontend/blob/master/jsdev/bitex/api/bitex.js |
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
{ | |
// The command to execute for the terminal, leave blank for the OS default | |
// On OS X the terminal can be set to iTerm.sh to execute iTerm | |
"terminal": "C:\\Windows\\system32\\cmd.exe", | |
// A list of default parameters to pass to the terminal, this can be | |
// overridden by passing the "parameters" key with a list value to the args | |
// dict when calling the "open_terminal" or "open_terminal_project_folder" | |
// commands | |
"parameters": ["/START", "%CWD%"] |
OlderNewer