1) I have created the few images from my original xyz.mp4 (using ffmpeg)
2) I am again creating the video from the images but the output.mp4 does not have the audio.
I use the following command to create the video from images.
ffmpeg -b:v 850 -r 10 -i out%d.png -s 640X480 -vcodec libx264 -sameq output.mp4
Kindly let me know the the way for following steps
1) create images from video (.mp4)
2) create video(.mp4) from those images ( with audio in output file)
Thank you.