Is there any library which allows to convert text to video in C# just like we have text to speech.
Asked
Active
Viewed 2,746 times
2 Answers
2
You can use System.Graphics.DrawString()
to create images from text. To turn them into videos, you might have a look at this question.
0
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?