Is there any library which allows to convert text to video in C开发者_运维百科# just like we have text to speech.
You can use System.Graphics.DrawString()
to create images from text. To turn them into videos, you might have a look at this question.
How do you mean? Do you mean convert the string itself to a video of some length? If so, Job B's answer is a good starting point. Or do you mean convert (TTS) the text to audio and convert the audio to a movie? You can use System.Speech.Synthesis to convert text to audio. Or a combination?
精彩评论