2

Is there any library which allows to convert text to video in C# just like we have text to speech.

Sandhurst
  • 227
  • 1
  • 6
  • 10

2 Answers2

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.

Community
  • 1
  • 1
Jon B
  • 48,211
  • 29
  • 125
  • 158
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?

Community
  • 1
  • 1
AceJordin
  • 422
  • 5
  • 13