Giter Club home page Giter Club logo

Comments (5)

dshigh avatar dshigh commented on July 23, 2024

check for output in your phone storage.

from ffmpegandroidlibrary.

pals-ric avatar pals-ric commented on July 23, 2024

@dshigh file is not there in external storage and why app is stoping while running...

from ffmpegandroidlibrary.

dshigh avatar dshigh commented on July 23, 2024

Share your log.

from ffmpegandroidlibrary.

pals-ric avatar pals-ric commented on July 23, 2024

if i tried to mute video with this command
Controller.getInstance().run(new String[]{
"-y",
"-i",
filein,
"-vcodec",
"copy",
"-an",
fileout
});

its working fine, but if i'm trying to add image in the video with this command,
Controller.getInstance().run(new String[]{ "-i", filein, "-i", image, "-filter_complex", "overlay=10:main_h-overlay_h-10", fileout
});

its not working, app is crashing.

from ffmpegandroidlibrary.

rishirane avatar rishirane commented on July 23, 2024

In case you are still wondering..
As you are trying to put image over video it needs to be re-encoded with libx264 codec profile.

new String[]{ "-y", "-i", videofileabsolutepath, "-i", imagefileabsolutepath,"-strict","experimental", "-filter_complex", "[0:v][1:v] overlay=10:main_h-overlay_h-10[vid]", "-c:v","libx264","-c:a","aac", "-map", "[vid]", "-map":''[0:a]" fileoutabsolutepath
}

You can use audio codec as copy if you dont want audio to be re-encoded. Also check your image height is not 10 otherwise it will be hidden.

Order of the command needs to be same. Hopefully this will work.

Now if app is still crashing then check log for some clue. May be videofile path or image path is not correct.

from ffmpegandroidlibrary.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.