├── .github ├── COMMIT_TEMPLATE.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── code ├── data │ ├── 1.srt │ └── 1_summarized.mp4 └── sum.py └── requirements.txt /.github/COMMIT_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/.github/COMMIT_TEMPLATE.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/README.md -------------------------------------------------------------------------------- /code/data/1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/code/data/1.srt -------------------------------------------------------------------------------- /code/data/1_summarized.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/code/data/1_summarized.mp4 -------------------------------------------------------------------------------- /code/sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/code/sum.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGenus/vidsum/HEAD/requirements.txt --------------------------------------------------------------------------------