将文本转换为视频(mp4 或 mov 或 flv)
是否有任何库可以将 C# 中的文本转换为视频,就像我们将文本转换为语音一样。
Is there any library which allows to convert text to video in C# just like we have text to speech.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
System.Graphics.DrawString( )
从文本创建图像。要将它们变成视频,您可以查看 这个问题。You can use
System.Graphics.DrawString()
to create images from text. To turn them into videos, you might have a look at this question.你是什么意思?您的意思是将字符串本身转换为一定长度的视频吗?如果是这样,作业 B 的答案是一个很好的起点。或者您的意思是将文本转换(TTS)为音频并将音频转换为电影?您可以使用 System.Speech.Synthesis 进行转换文本转音频。还是组合?
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?