0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

スライドショーを作る

Posted at

スライドショーを作る

powerpointあれば

powerpointがあれば、その機能をつかって実現可能なのですが、ここではそれをつかわずに実現する方法を考えます。

音声の部分

音声は読み上げです。いわゆるTTSです。
voicevoxなどのTTSアプリで発生させます。

スライドショーの部分

Xの部分にはトータル上映時間をいれてください

ffmpeg -f concat -safe 0 -i image.txt -t X tmp.mp4

image.txtは次のような感じでつくりました。

file 'image1.jpg'
duration 5
file 'image2.jpg'
duration 3
file 'image3.jpg'
duration 7

音声と画像をあわせます

ffmpeg -i tmp.mp4 -i output1.mp3 -c:v copy -c:a aac -strict experimental SS1.mp4
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?