node-photography-tools
v1.0.4
Published
A collection of photography tools
Downloads
6
Readme
Node Photography Tools
A collection of photography tools
Installation
$ npm install -g node-photography-tools
CLI Tools
Modules
Importer
Receive a input folder with all photos, and copy to a destination folder, renaming using Exif Original Date (YYYY.MM.dd_HH.mm.ss)
DSC0001.JPG >>> 2016.01.01_13.14.55.JPG
$ photo-importer -f <from folder> -t <to folder>
Rename
var rename = require('rename');
rename('/path/to/image').then(function(renamed){
//Use renamed
console.log(renamed);
});