2

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

Sandhurst
  • 227
  • 2
  • 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
  • 51,025
  • 31
  • 133
  • 161
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
  • 442
  • 5
  • 13