/Text2Mp4

Project for Ultrahack hackathon at 91Springboard.

Primary LanguageJavaScript

Text2mp4

How to use this concise web app :

-> Follow the steps below to install all requirements and launch on localhost.

-> Upload a PDF file and wait for it to compile and convert (Might take some time, depends on length of document)

-> Scroll down in the website to the table, and open up the video to the first row(It contains the pdf uploaded and the video converted), the latest one.

Enjoy !

Contains the project for our submission at Ultrahack

Includes the algorithm (Uses nltk, gensim, PIL, moviepy and more)
Contains the django backend with djang_rest_framework deployed.

Python 2.7 is required for this project.

HOW TO SET UP THE PROJECT LOCALLY :

cd to a favourable location to initialize your project and a virtual environment.
foo@bar:~$ virtualenv -p my_project
foo@bar:~$ source my_project/bin/activate
Clone the repostory.
foo@bar:~$ git clone https://github.com/keshavvinayak01/hackDelhi
Install all the requirements
foo@bar:~$ cd hackDelhi
foo@bar:~/hackDelhi$ pip install -r requirements.txt
move to the project folder and initialize the database
foo@bar:~/hackDelhi$ cd backend/hackdelhi
foo@bar:~/hackDelhi/backend/hackdelhi$ pip manage.py migrate
foo@bar:~/hackDelhi/backend/hackdelhi$ pip manage.py makemigrations
runserver.
foo@bar:~/hackDelhi/backend/hackdelhi$ pip manage.py runserver