├── .gitignore ├── LICENSE ├── README.md ├── data └── shots.json ├── index.html └── js ├── lib ├── popcorn-base.js └── popcorn.js ├── main.js ├── play.js └── popcorn.smartcrop.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/README.md -------------------------------------------------------------------------------- /data/shots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/data/shots.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/index.html -------------------------------------------------------------------------------- /js/lib/popcorn-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/js/lib/popcorn-base.js -------------------------------------------------------------------------------- /js/lib/popcorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/js/lib/popcorn.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/js/main.js -------------------------------------------------------------------------------- /js/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/js/play.js -------------------------------------------------------------------------------- /js/popcorn.smartcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/povdocs/video-smart-crop/HEAD/js/popcorn.smartcrop.js --------------------------------------------------------------------------------