Generate Video From Images and AudioMerge video and audio with ffmpeg. Loop the video while audio is not overEncode audio and video in same format and then mergeffmpeg: several audio files + several images = 1 video?Cutting the videos based on start and end time using ffmpegAdding an audio trace with JCodec for AndroidMencoder - Audio is longer than Video StreamNot able to generate mp4 using png and mp3 audioCombine audio with ffmpeg breaks videoffmpeg: concat video and audio filesIs there a programatic way to create video content from still images?
Have 1.5% of all nuclear reactors ever built melted down?
What was the idiom for something that we take without a doubt?
I know that there is a preselected candidate for a position to be filled at my department. What should I do?
Why did Jon Snow do this immoral act if he is so honorable?
My employer faked my resume to acquire projects
Why did the person in charge of a principality not just declare themself king?
What could a self-sustaining lunar colony slowly lose that would ultimately prove fatal?
Is there a simple example that empirical evidence is misleading?
Why do Russians almost not use verbs of possession akin to "have"?
Can the Grave cleric's Sentinel at Death's Door feature turn a critical hit into a miss, while adamantine armor does not?
Where's this lookout in Nova Scotia?
My players want to grind XP but we're using milestone advancement
Is it truly impossible to tell what a CPU is doing?
Dad jokes are fun
bash regexp matching fails in [[ ]]
How to cut a climbing rope?
Pirate democracy at its finest
Website returning plaintext password
How to deal with a colleague who is being aggressive?
How to politely tell someone they did not hit "reply to all" in an email?
The roles understanding in the agile development / Is the PO always right?
Is the field of q-series 'dead'?
Why would Ryanair allow me to book this journey through a third party, but not through their own website?
First Match - awk
Generate Video From Images and Audio
Merge video and audio with ffmpeg. Loop the video while audio is not overEncode audio and video in same format and then mergeffmpeg: several audio files + several images = 1 video?Cutting the videos based on start and end time using ffmpegAdding an audio trace with JCodec for AndroidMencoder - Audio is longer than Video StreamNot able to generate mp4 using png and mp3 audioCombine audio with ffmpeg breaks videoffmpeg: concat video and audio filesIs there a programatic way to create video content from still images?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a list of images: 1.png, 2.png... and a list of audio files 1.mp3, 2.mp3...
I'd like to generate a video file where audio clips are concatenated, and each image is displayed over the corresponding audio clip: 
Think of the images as slides in a slideshow, and the audio as narration for the slide.
Are there any frameworks which would allow me to do this? I'd like to use FFmpeg CLI or something high level if possible.
audio video ffmpeg photo video-editing
add a comment |
I have a list of images: 1.png, 2.png... and a list of audio files 1.mp3, 2.mp3...
I'd like to generate a video file where audio clips are concatenated, and each image is displayed over the corresponding audio clip: 
Think of the images as slides in a slideshow, and the audio as narration for the slide.
Are there any frameworks which would allow me to do this? I'd like to use FFmpeg CLI or something high level if possible.
audio video ffmpeg photo video-editing
1
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31
add a comment |
I have a list of images: 1.png, 2.png... and a list of audio files 1.mp3, 2.mp3...
I'd like to generate a video file where audio clips are concatenated, and each image is displayed over the corresponding audio clip: 
Think of the images as slides in a slideshow, and the audio as narration for the slide.
Are there any frameworks which would allow me to do this? I'd like to use FFmpeg CLI or something high level if possible.
audio video ffmpeg photo video-editing
I have a list of images: 1.png, 2.png... and a list of audio files 1.mp3, 2.mp3...
I'd like to generate a video file where audio clips are concatenated, and each image is displayed over the corresponding audio clip: 
Think of the images as slides in a slideshow, and the audio as narration for the slide.
Are there any frameworks which would allow me to do this? I'd like to use FFmpeg CLI or something high level if possible.
audio video ffmpeg photo video-editing
audio video ffmpeg photo video-editing
asked Mar 24 at 2:11
user2248702user2248702
96321948
96321948
1
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31
add a comment |
1
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31
1
1
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31
add a comment |
1 Answer
1
active
oldest
votes
Lazy method is to make each segment then concatenate with the concat demuxer:
ffmpeg -loop 1 -i 1.png -i 1.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 1.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -f concat -i input.txt -c copy -movflags +faststart output.mp4
This assumes the image files are the same width & height, and the audio files have the same channel layout & sample rate.
More complicated method is to use the concat filter which allows you to do it all in one command, but you'll have to enter the duration of each image segment to match the corresponding audio duration.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320146%2fgenerate-video-from-images-and-audio%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Lazy method is to make each segment then concatenate with the concat demuxer:
ffmpeg -loop 1 -i 1.png -i 1.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 1.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -f concat -i input.txt -c copy -movflags +faststart output.mp4
This assumes the image files are the same width & height, and the audio files have the same channel layout & sample rate.
More complicated method is to use the concat filter which allows you to do it all in one command, but you'll have to enter the duration of each image segment to match the corresponding audio duration.
add a comment |
Lazy method is to make each segment then concatenate with the concat demuxer:
ffmpeg -loop 1 -i 1.png -i 1.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 1.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -f concat -i input.txt -c copy -movflags +faststart output.mp4
This assumes the image files are the same width & height, and the audio files have the same channel layout & sample rate.
More complicated method is to use the concat filter which allows you to do it all in one command, but you'll have to enter the duration of each image segment to match the corresponding audio duration.
add a comment |
Lazy method is to make each segment then concatenate with the concat demuxer:
ffmpeg -loop 1 -i 1.png -i 1.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 1.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -f concat -i input.txt -c copy -movflags +faststart output.mp4
This assumes the image files are the same width & height, and the audio files have the same channel layout & sample rate.
More complicated method is to use the concat filter which allows you to do it all in one command, but you'll have to enter the duration of each image segment to match the corresponding audio duration.
Lazy method is to make each segment then concatenate with the concat demuxer:
ffmpeg -loop 1 -i 1.png -i 1.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 1.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -loop 1 -i 2.png -i 2.mp3 -c:v libx264 -preset stillimage -vf format=yuv420p -c:a aac -shortest 2.mp4
ffmpeg -f concat -i input.txt -c copy -movflags +faststart output.mp4
This assumes the image files are the same width & height, and the audio files have the same channel layout & sample rate.
More complicated method is to use the concat filter which allows you to do it all in one command, but you'll have to enter the duration of each image segment to match the corresponding audio duration.
edited Mar 26 at 16:57
answered Mar 25 at 20:23
lloganllogan
48.9k14111143
48.9k14111143
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55320146%2fgenerate-video-from-images-and-audio%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
ffmpeg in an iteration on the inputs followed by concatentation can do this.. n.png and n.mp3 are all input to make separate outputs (1,2,3.mp4) Then a concate step to join these 3 mp4 files. there are 2 separate sections of ffmpeg docs covering how to combine inputs of static photo with audio and how to concat video files.
– Robert Rowntree
Mar 24 at 7:31