使用 FFmpeg 在影片上新增 Gif 作為浮水印

使用 FFmpeg 在影片上新增 Gif 作為浮水印

我試圖將 gif 放在影片上並連續播放 gif 直到影片結束。

String[] command_try=new String[13];
    command_try[0]="-i";
    command_try[1]=video_path;
    command_try[2]="-i";
    command_try[3]=gifthumbnail;
    command_try[4]="-filter_complex";
    command_try[5]="overlay=(main_w-overlay_w)/2:y=(main_h-overlay_h)/2";
    command_try[6]="-pix_fmt";
    command_try[7]="yuv420p";
    command_try[8]="-c:a";
    command_try[9]="copy";
    command_try[10]="-preset";
    command_try[11]="ultrafast";
    command_try[12]="/storage/emulated/0/Pictures/video_24.mp4";

但用 gif 保存影片大約需要 2-3 分鐘。

相關內容