Saurav Prakash
Saurav Prakash

Reputation: 654

Overlay image on video using ffmpeg with adjustable png image

My png image is a birthday frame and I want to place it exactly on top of video with all corners of video and image overlap. I have attached image of my output.

The output i am getting is this

This is the command i am using-

String[] cmd = new String[]{ "-i", slideVid, "-i", sdPath, "-filter_complex", "overlay=0:main_w-overlay_w", outputFile.getPath()};

Please help !!

Upvotes: 1

Views: 2714

Answers (1)

Saurav Prakash
Saurav Prakash

Reputation: 654

This works fine. Tested on Moto G4, nexus 7 and sony XA DUAL.

OUTPUT IMAGE

 private void execFFmpegBinaryShortest(final String[] command) {
        final File outputFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/slideShowMusic/"+"Vid"+"output"+i1+".mp4");
       
         String[] cmd = new String[]{  "-y", "-i", slideVid, "-i", sdPath ,"-filter_complex", "[1][0]scale2ref[i][m];[m][i]overlay[v]" ,"-map", "[v]", "-map",  "0:a?", "-ac", "2", outputFile.getPath()};

         try {

            ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {
                @Override
                public void onFailure(String s) {
                    System.out.println("on failure----"+s);
                }

                @Override
                public void onSuccess(String s) {
                    System.out.println("on success-----"+s);
                }

                @Override
                public void onProgress(String s) {
                    //Log.d(TAG, "Started command : ffmpeg "+command);
                    System.out.println("Started---"+s);

                   mBtnNext.setText("Converting-->"+s);


                }

                @Override
                public void onStart() {
                    //Log.d(TAG, "Started command : ffmpeg " + command);
                    System.out.println("Start----");}

                @Override
                public void onFinish() {
                    System.out.println("Finish-----");
                    Intent i = new Intent(imageOverlay.this, addAudio.class);
                    System.out.println("!!!!!!!!"+outputFile);
                    i.putExtra("slideVid",outputFile.getPath());
                    startActivity(i);
                }
            });
        } catch (FFmpegCommandAlreadyRunningException e) {
            // do nothing for now
            System.out.println("exceptio :::"+e.getMessage());
        }


    }

Upvotes: 5

Related Questions