├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── requirements.txt ├── research └── test.ipynb ├── youtube_transcript.py └── youtube_transcripts.db /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/requirements.txt -------------------------------------------------------------------------------- /research/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/research/test.ipynb -------------------------------------------------------------------------------- /youtube_transcript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/youtube_transcript.py -------------------------------------------------------------------------------- /youtube_transcripts.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeependraVerma/AI-Lecture-Transcriber-YouTube-to-Notes-Converter/HEAD/youtube_transcripts.db --------------------------------------------------------------------------------