Skip to content

Instantly share code, notes, and snippets.

D:\Downloads\dk-enhance-utility-v0.4.0-RC01.win64>dk-enhance-utility.exe --comp "D:\CAPTURES_RGBD\CAPTURES_DELL\CAPTURES\TAKE_03_05_17_21_49\compositions\CLI_CLELIO_TEMPLO" -w 2048 -h 2048 -o d:\cli --name myexport --format png
2018-04-05 11:34:49.741 WARN [516] [DepthKit::XmlUtils::loadXmlFile@12] D:\CAPTURES_RGBD\CAPTURES_DELL\CAPTURES\TAKE_03_05_17_21_49\compositions\CLI_CLELIO_TEMPLO\..\..\pairings.xml does not exist or is not a regular file.
2018-04-05 11:34:49.803 INFO [516] [main@261] Using sensor video stream, no sync necessary.
2018-04-05 11:34:50.298 INFO [516] [DepthKit::IO::VideoPlayerWMFSourceReader::load@717] No audio streams found.
2018-04-05 11:34:50.299 INFO [516] [logDescriptor@447] Color video frame rate: 24 / 1
//
// AutoresViewController.m
// iosStoryboardExample
//
// Created by Clelio de Paula on 17/06/15.
//
//
#import "CreditosViewController.h"
@mihnor
mihnor / OmarAppViewController.m
Last active April 11, 2016 15:59
ViewController referência para abrir cada poesia.
//OmarAppViewController.h
#import "ofxiOSViewController.h"
@interface OmarAppViewController : ofxiOSViewController
@end
//OmarAppViewController.m
#!/bin/sh
# TMPDIR=`mkdir foo`
ffmpeg -i $1 "%3d.png"
ffmpeg -r "15" -i "%3d.png" -profile:v baseline -pix_fmt yuv420p -c:v libx264 -crf "30" video2.mp4
# CONCAT 10 VIDEOS TO MAKE A LARGER ONE
for i in {1..6}; do printf "file '%s'\n" video2.mp4 >> list2.txt; done
ffmpeg -f concat -i list2.txt -c copy -movflags faststart "$1".mp4
#!/bin/sh
TMPDIR=`mktemp -d`
ffmpeg -i $1 "$TMPDIR/%3d.png"
ffmpeg -r "15" -i "$TMPDIR/%3d.png" -profile:v baseline -pix_fmt yuv420p -c:v libx264 -crf "30" $TMPDIR/"$1".mp4
# CONCAT 10 VIDEOS TO MAKE A LARGER ONE
# for i in {1..1}; do printf "file '%s'\n" $TMPDIR/video.mp4 >> $TMPDIR/list.txt; done
# ffmpeg -f concat -i $TMPDIR/list.txt -c copy -movflags faststart "$1".mp4
// by dave @ bees & bombs >:)
int[][] result;
float t;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
float ease(float p, float g) {
// by Dave @ Bees & Bombs >:)
int[][] result;
float time;
void setup() {
setup_();
result = new int[width*height][3];
}
// Photoshop Script to Create iPhone Icons from iTunesArtwork // // WARNING!!! In the rare case that there are name collisions, this script will // overwrite (delete perminently) files in the same folder in which the selected // iTunesArtwork file is located. Therefore, to be safe, before running the // script, it's best to make sure the selected iTuensArtwork file is the only // file in its containing folder. // // Copyright (c) 2010 Matt Di Pasquale // Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com // // 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 // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and
@mihnor
mihnor / gist:67149203a382075f44d8
Created October 14, 2014 16:17
fluidlines/pauta usando paper.js
var width, height, center;
var points = 10;
var smooth = true;
var path = new Path();
var mousePos = view.center / 2;
var pathHeight = mousePos.y;
path.fillColor = 'white';
path.strokeWidth = 2;
path.strokeColor = new Color(0, 0, 100);
@mihnor
mihnor / help-wrapAsync
Last active August 29, 2015 14:07
help with wrapAsync
/**
* Created by cleliodpaula on 13/10/14.
*/
/**Opa, estou precisando de uma ajudinha:
Como eu implemento o WrapAsync de forma correta?
Quero, em um template saber se o usuário possui pelo menos um ítem criado por ele. E então definir, se ele pode ou não criar um outro item.