├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── segment ├── segment.py └── to_segment.mp4 └── webapp ├── .bowerrc ├── bower.json ├── db.sqlite3 ├── manage.py ├── media ├── cnn.mp4 └── input.mp4 ├── static ├── css │ └── main.css └── image.png ├── videnhance ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── index.html │ ├── layout.html │ ├── video.html │ └── video2.html ├── tests.py ├── urls │ └── __init__.py └── views.py └── webapp ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/requirements.txt -------------------------------------------------------------------------------- /segment/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/segment/segment.py -------------------------------------------------------------------------------- /segment/to_segment.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/segment/to_segment.mp4 -------------------------------------------------------------------------------- /webapp/.bowerrc: -------------------------------------------------------------------------------- 1 | {"directory": "static/bower_modules"} 2 | -------------------------------------------------------------------------------- /webapp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/bower.json -------------------------------------------------------------------------------- /webapp/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/db.sqlite3 -------------------------------------------------------------------------------- /webapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/manage.py -------------------------------------------------------------------------------- /webapp/media/cnn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/media/cnn.mp4 -------------------------------------------------------------------------------- /webapp/media/input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/media/input.mp4 -------------------------------------------------------------------------------- /webapp/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/static/css/main.css -------------------------------------------------------------------------------- /webapp/static/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/static/image.png -------------------------------------------------------------------------------- /webapp/videnhance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/videnhance/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/admin.py -------------------------------------------------------------------------------- /webapp/videnhance/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/apps.py -------------------------------------------------------------------------------- /webapp/videnhance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/videnhance/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/models.py -------------------------------------------------------------------------------- /webapp/videnhance/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/templates/index.html -------------------------------------------------------------------------------- /webapp/videnhance/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/templates/layout.html -------------------------------------------------------------------------------- /webapp/videnhance/templates/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/templates/video.html -------------------------------------------------------------------------------- /webapp/videnhance/templates/video2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/templates/video2.html -------------------------------------------------------------------------------- /webapp/videnhance/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/tests.py -------------------------------------------------------------------------------- /webapp/videnhance/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/urls/__init__.py -------------------------------------------------------------------------------- /webapp/videnhance/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/videnhance/views.py -------------------------------------------------------------------------------- /webapp/webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/webapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/webapp/settings.py -------------------------------------------------------------------------------- /webapp/webapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/webapp/urls.py -------------------------------------------------------------------------------- /webapp/webapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitness/major-project/HEAD/webapp/webapp/wsgi.py --------------------------------------------------------------------------------