├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── ffmpeg └── ffmpeg.exe ├── magick ├── compare.exe └── convert.exe ├── package.json ├── results └── README.md └── video_diff.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/config.json -------------------------------------------------------------------------------- /ffmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/ffmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /magick/compare.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/magick/compare.exe -------------------------------------------------------------------------------- /magick/convert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/magick/convert.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/package.json -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/results/README.md -------------------------------------------------------------------------------- /video_diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endain/arg-video-diff/HEAD/video_diff.js --------------------------------------------------------------------------------