vks
vks

Reputation: 7071

Combine an Image File with an Audio File

I have a requirement in my PHP site to join an image(jpg or png) with an audio(wav) and the output should be a video (like mpeg ,mp4 or wav itself).

Is there any tool available for this?

Upvotes: 0

Views: 335

Answers (1)

laurent
laurent

Reputation: 90804

ffmpeg could do that quite easily. You can create a video from a set of images (in your case, only one) and attach audio to it. Just have a look at the documentation.

Upvotes: 1

Related Questions