[ffmpeg] 連番ファイルから動画作成

ffmpeg -r 25 -i %04d.png -vcodec libx264 -pix_fmt yuv420p -r 25 movie.mp4 秒間25フレーム、名前形式が 0001.png の連番ファイルを動画に変換

January 30, 2018 · 1 分 · 40 文字 · david

[VirtualBox][npm][webpack][Browsersync] windows10で突如Browser syncでExternalで接続できなくなった時の対処

ネットワーク設定をプライベートにしているか プライベートネットワークのファイアウォールを切っているか このあたりをまずチェック。それでもダメで半日いろいろとやっててわかったのは、 ...

January 24, 2018 · 1 分 · 229 文字 · david

[npm] package.jsonのモジュールを最新のバージョン更新してくれる

$npm install -g npm-check-updates $ncu -u

January 24, 2018 · 1 分 · 6 文字 · david

[IE][ES6] Assignment to read-only properties is not allowed in strict modeを回避

ReactでUIを動的に変化させる実装をしていてEdge/IEで、 Assignment to read-only properties is not allowed in strict mode とエラった。 これは、 const cell = findDOMNode(this.refs.cell); let _rect = cell.getBoundingClientRect(); _rect.y += 10; みたいに、DOMのRectがread-onlyのものに代入するとでるから、 ...

January 23, 2018 · 1 分 · 128 文字 · david

XcodeでLipo error の解決方法

Build Settings > Build Active Architecture Only > Yes https://stackoverflow.com/questions/32949399/error-while-building-for-ios-from-unity-in-xcode-7

January 18, 2018 · 1 分 · 10 文字 · david

UnityでiOSのビルドをしてxcodeでアーカイブするときによくでるエラー

その1 .......MapFileParser.sh: Permission denied まんまパーミッションを変更する chmod +x MapFileParser.sh</span> その2 clang: error: no such file or directory: '......../Classes/Prefix.pch' clang: error: no input files どこか別のxcodeプロジェクトから同じファイルをコピペしてもってくる ...

January 15, 2018 · 1 分 · 93 文字 · david

[react.js] リアクトでイベントリスナー

const element = findDOMNode(this.refs.element); element.addEventListener('mouseover'),(e)=>{ this.mouseover(e); }); element.addEventListener('mouseout'),(e)=>{ this.mouseout(e); }); こうしてあげる this._mouseover = this.mouseover.bind(this); this._mouseout = this.mouseout.bind(this);</p> <p>const element = findDOMNode(this.refs.element); element.addEventListener('mouseover'),(e)=>{ this._mouseover(e); }); element.addEventListener('mouseout'),(e)=>{ this._mouseout(e); });

January 14, 2018 · 1 分 · 33 文字 · david

Git リモートリポジトリをローカルで上書き

git push -f origin master

January 3, 2018 · 1 分 · 5 文字 · david

Blender 選択方法

ドラッグで連続選択 C ドラッグで囲んで選択 B

December 18, 2017 · 1 分 · 21 文字 · david

react-map-glのPopup

1.Popupをインポート import {Popup} form ‘react-map-gl’; 2.使い方 hoge(){ return ( <Popup tipSize={5} //座標を指すチップのサイズ。 anchor=”top” //座標に対するポップアップの位置を示す文字列。オプションはtop、bottom、left、right、top-left、top-right、bottom-left、bottom-right。 ...

December 14, 2017 · 1 分 · 170 文字 · tkut