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
{ | |
"frontal-view": { | |
"photos": { | |
"b2c": { | |
"mime_type": "image\/png", | |
"thumbnail": "https:\/\/componata.local\/wp-content\/uploads\/2020\/09\/[email protected]", | |
"1x": "https:\/\/componata.local\/wp-content\/uploads\/2020\/09\/[email protected]", | |
"2x": "https:\/\/componata.local\/wp-content\/uploads\/2020\/09\/[email protected]" | |
}, | |
"b2b": [] |
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
{ | |
"Working Directory" : "\/Users\/juanpablob", | |
"Prompt Before Closing 2" : 0, | |
"Selected Text Color" : { | |
"Green Component" : 1, | |
"Red Component" : 1, | |
"Blue Component" : 1 | |
}, | |
"Rows" : 25, | |
"Ansi 11 Color" : { |
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
dateHandler: { | |
self: this, | |
pickers: {}, | |
dates: { | |
form: null, | |
to: null, | |
disabled: [] | |
}, | |
objects: { | |
regular: 'input[data-date-picker="regular"]', |
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
## extract audio from .avi as .aac (conversion from another audio codec) | |
ffmpeg -i foo.avi -acodec aac -ab 128k -strict experimental bar.aac | |
## extract audio from .avi as .mp3 (no conversion, just copy) | |
ffmpeg -i foo.avi -acodec copy bar.mp3 | |
## convert .mp3 to .aac | |
ffmpeg -i foo.mp3 -acodec aac -ab 128k -strict experimental bar.aac | |
## extract single frame as image from .mp4 |
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
/** | |
* @name hodor | |
* | |
* Main module of the application. | |
*/ | |
var app = angular.module('hodor', []). | |
constant('config', { | |
version: '0.0.1', |