https://code.visualstudio.com/docs/editor/command-line
ctrl+p
type: `> shell install
https://code.visualstudio.com/docs/editor/command-line
ctrl+p
type: `> shell install
http://www.atmarkit.co.jp/ait/articles/1401/21/news042.html
git checkout -b {{new-feat}}
git push origin {{new-feat}}| export function postLocalImage(params, // @arg Object - { url: url, blob: Blob } | |
| readyCallback, // @arg Function - readyCallback():void | |
| errorCallback) { // @arg Function - errorCallback(error):void | |
| let url = `/sd/upload/images`; | |
| let form = new FormData(); | |
| /* | |
| form.append("img[]", params.blob, "000001.jpg"); // TBD: | |
| form.append("img[]", params.blob, "000002.jpg"); // TBD: | |
| form.append("img[]", params.blob, "000003.jpg"); // TBD: |
| const execa = require("execa"); | |
| const to_json = require("xmljson").to_json; | |
| const EXTERNAL_DIR = "/Volumes"; // mac | |
| function getExternalSDCardID(readyCallback, errorCallback) { | |
| const params = ["list", "-plist", "external", "physical"]; | |
| // diskutil list -plist external physical | |
| execa("diskutil", [...params]).then(result => { | |
| to_json(result.stdout, (err, root) => { |
dlib を適当な場所(この例では dlib)に展開し、正しく動作するか確認します。
git clone [email protected]:davisking/dlib.git
cd dlib
cd examples
mkdir build
cd build
ffmpeg には libavfilter ライブラリ経由で利用できる filter 機能があり、必要に応じて独自の filter を作成し追加することが可能です。 このエントリでは frei0r に独自filterを追加する方法について説明していきます。
ffmpeg filters には filter の一覧と指定方法の説明があります。
filter には以下の特徴があります。