Vidtext is a python library which provides the functionality to convert the text directly into the video. vidtext used the rake_nltk library to tokenization the text. then select the highest score token to make an image according to the token.
pip install vidtext
git clone https://github.com/anubhavshakya/vidtext.git
python vidtext/setup.py install
import vidtext
li = "Text" # Text Content for video
content = vidtext.summary(li) # Return List
vidtext.TextToVideo(content,vs=0.1) # vs to control the speed of video
Please use issue tracker for reporting bugs or feature requests.
Pull requests are most welcome.