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;








0















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: example image



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.










share|improve this question

















  • 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

















0















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: example image



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.










share|improve this question

















  • 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













0












0








0








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: example image



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.










share|improve this question














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: example image



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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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












  • 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












1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer

























    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
    );



    );













    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer





























      1














      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.






      share|improve this answer



























        1












        1








        1







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 26 at 16:57

























        answered Mar 25 at 20:23









        lloganllogan

        48.9k14111143




        48.9k14111143





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해