A web app for students low on time, but who don't want to miss out on the lively student-lecturer interactions from their lectures.
Given a Youtube link to a lecture with a live chat, it automatically generates Q&A summaries with questions from the chat and the corresponding answer from moderators or the lecturer.
Want to give it a try? Paste this link https://www.youtube.com/watch?v=4WBbrxZguqk or any lecture on Youtube into the app and hit summarise!
Watch the original product pitch here.
Paste in lecture video link which was livestreamed on Youtube, hit the summarise button and our app will:
- Fetch the transcript and live chat data from the video
- Use intelligent string matching that employs natural language processing techniques such as Levenshtein distance to return a list of questions asked by students along with the corresponding answers provided by moderators or the lecturer.
- Provides a timestamp and a direct hyperlink to exactly when the question was answered.
- add
"proxy": "http://localhost:5000"
to package.json yarn install
to install JS dependenciesyarn start-backend
to start the serveryarn start
to start the frontend
If things aren't working you might have to install the python dependencies
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt