How to render videos with Dart code - FFMPEG CLI

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 11

  • @twistedfate9475
    @twistedfate9475 11 місяців тому

    Hi Matt, i am looking for way to overlay a image over a video so that is that filter call ?

  • @faisalmushtaq2287
    @faisalmushtaq2287 Рік тому

    how to convert list of images to video???

  • @minafaried
    @minafaried Рік тому

    How can I replace video audio with audio file

  • @cookiiking
    @cookiiking 2 роки тому

    Hi Matt! How do you add image overlays to concatenated videos using your plugin? I'm very invested. Could we please get a tutorial? Thank you! ❤️

    • @FlutterBountyHunters
      @FlutterBountyHunters  2 роки тому +1

      That's a pretty complicated answer for FFMPEG CLI, because the CLI makes everything complicated. We'll have another proof of concept project coming soon, built on top of ffmpeg_cli, that will make your use case much easier.

  • @mominmobologics
    @mominmobologics Рік тому

    Kindly make a video on mp4 to mp3 converter in ffmpeg

  • @prometheusli101
    @prometheusli101 2 роки тому

    First, make sure that ffmpeg is installed on your device, and is available on your system path.
    so, how can i do above in Android?

    • @FlutterBountyHunters
      @FlutterBountyHunters  2 роки тому

      The current prototype only works as-is for desktop. We can expand to Android if one or more companies would like to fund a milestone.

  • @ssathiya3779
    @ssathiya3779 Рік тому

    First upon thanks a lot for making this awesome tutorial. I am following such interesting topics. I just tried your code and getting some errors-
    No such file or directory
    Command: ffmpeg -i assets/intro.mp4 -i assets/sound.mp4 -loglevel info -map [final_v] -map [final_a] -vsync 2 -filter_complex [0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [comp_0_v] [comp_0_a] assets/generated.mp4
    I am working on mac.
    Please help to resolve this error.

    • @FlutterBountyHunters
      @FlutterBountyHunters  Рік тому +1

      Do those input files exist at those locations? In general, when working with FFMPEG commands, you'll want to get familiar with tracking down these issue, and using FFMPEG docs and stackoverflow to figure it out. The UA-cam comments section isn't really intended for debugging.

    • @ssathiya3779
      @ssathiya3779 Рік тому

      @@FlutterBountyHunters Well said. Yes i will do more research on google. Thanks.