├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── app.py ├── asset ├── demo_.png └── overview.png ├── dvd ├── build_database.py ├── config.py ├── dvd_core.py ├── frame_caption.py ├── func_call_shema.py ├── utils.py └── video_utils.py ├── local_run.py ├── mcp_server.py ├── reproduce ├── README.md ├── decode_frames.py ├── download_lvbench.sh ├── prepare_database.py ├── run_benchmark.py └── transcribe.py └── requirements.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/app.py -------------------------------------------------------------------------------- /asset/demo_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/asset/demo_.png -------------------------------------------------------------------------------- /asset/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/asset/overview.png -------------------------------------------------------------------------------- /dvd/build_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/build_database.py -------------------------------------------------------------------------------- /dvd/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/config.py -------------------------------------------------------------------------------- /dvd/dvd_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/dvd_core.py -------------------------------------------------------------------------------- /dvd/frame_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/frame_caption.py -------------------------------------------------------------------------------- /dvd/func_call_shema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/func_call_shema.py -------------------------------------------------------------------------------- /dvd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/utils.py -------------------------------------------------------------------------------- /dvd/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/dvd/video_utils.py -------------------------------------------------------------------------------- /local_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/local_run.py -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/mcp_server.py -------------------------------------------------------------------------------- /reproduce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/README.md -------------------------------------------------------------------------------- /reproduce/decode_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/decode_frames.py -------------------------------------------------------------------------------- /reproduce/download_lvbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/download_lvbench.sh -------------------------------------------------------------------------------- /reproduce/prepare_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/prepare_database.py -------------------------------------------------------------------------------- /reproduce/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/run_benchmark.py -------------------------------------------------------------------------------- /reproduce/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/reproduce/transcribe.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DeepVideoDiscovery/HEAD/requirements.txt --------------------------------------------------------------------------------