吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 727|回复: 0
收起左侧

[Android 求助] 超级简单的求助(FFmpeg)

  [复制链接]
adolphin 发表于 2023-8-16 17:18
原因 :不是安卓开发不怎么懂怎么写.
重考源码base64地址: aHR0cHM6Ly9naXRodWIuY29tL0lUeGlhb2d1YW5nL1RyYW5zY29kZU1QMy8=
需求:我想循环读取/sdcard/下面的mp4转mp3, 做不出效果,是因为
RxFFmpegInvoke.getInstance()
.runCommandRxJava(commands)
.subscribe(myRxFFmpegSubscriber);
这个是异步的吗, 不会写了啊{:1_909:}

public class 1111 extends Dialog {

    private OnCallback callback;

    public interface OnCallback {
        void success(String successPath);

        void fail(int code, String message);
    }

    private Context context;

    private TextView tv_des;
    private TextView tv_progress;
    private TextView tv_cancel;

    //private MyRxFFmpegSubscriber myRxFFmpegSubscriber;
    private String inputPath;
    private String outputPath;
    private String[] ignores;

    public TranscodeMp3Dialog(@NonNull Context context) {
        super(context, R.style.dialog_default_style);
        this.context = context;
    }

    public void setInputPath(String inputPath) {
        this.inputPath = inputPath;
    }

    public void setOutputPath(String outputPath) {
        this.outputPath = outputPath;
    }

    public void setIgnores(String[] ignores) {
        this.ignores = ignores;
    }

    public void setCallback(OnCallback callback) {
        this.callback = callback;
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.setContentView(R.layout.dialog_media_loading);

        tv_des = findViewById(R.id.tv_des);
        tv_progress = findViewById(R.id.tv_progress);
        tv_cancel = findViewById(R.id.tv_cancel);
        tv_cancel.setOnClickListener(v -> dismiss());
        tv_des.setText(R.string.transcoding);

        setCanceledOnTouchOutside(false);
        getWindow().setBackgroundDrawableResource(R.color.transparent);

        initOutputPath();

        //File directory = new //File(Environment.getExternalStorageDirectory().getPath());
//      for (File file : directory.listFiles()) {

        //  if(file.getName().endsWith(".mp4")){
            //  inputPath = Environment.getExternalStorageDirectory().getPath() + "/" + file.getName();

            //  }
                runFFmpegRxJava();

//      }

    }

    /**
     * 默认输出路径  包名/cache/transcodeMp3/outputMp3.mp3
     */
    private void initOutputPath() {
        if (TextUtils.isEmpty(outputPath)) {
            String path = Environment.getExternalStorageDirectory().getPath() + "/Android/data/" + context.getPackageName();
            mkdir(path);
            mkdir(path + "/cache");
            mkdir(path + "/cache/transcodeMp3");
            //outputPath = path + "/cache/transcodeMp3" + "/outputMp3.mp3";
            outputPath = "/sdcard/1.mp3";
        }
    }

    public static void mkdir(String filePath) {
        File file = new File(filePath);
        if (!file.exists()) {
            file.mkdir();
        }
    }

    @Override
    public void cancel() {
    }

    private void runFFmpegRxJava() {

        if (inputPath.endsWith(".m3u8")) {
            callback.fail(-1, this.getContext().getResources().getString(R.string.cant_m3u8));
            dismiss();
            return;
        }
      /**  for (String ignore : ignores) {
            if (ignore.equals(getExtensionName(inputPath))) {
                callback.success(inputPath);
                if (this.isShowing()) {
                    dismiss();
                } else {
                    new Handler().postDelayed(this::dismiss, 400);
                }
                return;
            }
        }**/

        String ffmpeg = "ffmpeg -y -i %s -preset superfast %s";
        outputPath = "/sdcard/" + System.currentTimeMillis() + ".mp3";

        String content = String.format(ffmpeg, inputPath, outputPath);

        String[] commands = content.split(" ");

        MyRxFFmpegSubscriber myRxFFmpegSubscriber = new MyRxFFmpegSubscriber(this);

        //开始执行FFmpeg命令
        RxFFmpegInvoke.getInstance()

                .runCommandRxJava(commands)
                .subscribe(myRxFFmpegSubscriber);

    }

    public static class MyRxFFmpegSubscriber extends RxFFmpegSubscriber {

        private WeakReference<TranscodeMp3Dialog> mWeakReference;

        public MyRxFFmpegSubscriber(TranscodeMp3Dialog Mp3Converter) {
            mWeakReference = new WeakReference<>(Mp3Converter);
        }

        @Override
        public void onFinish() {
            final TranscodeMp3Dialog mHomeFragment = mWeakReference.get();
            if (mHomeFragment != null) {
                mHomeFragment.progressDialog(1, mHomeFragment.getContext().getString(R.string.handle_success));
            }
        }

        @Override
        public void onProgress(int progress, long progressTime) {
            final TranscodeMp3Dialog mHomeFragment = mWeakReference.get();
            if (mHomeFragment != null) {
                //progressTime 可以在结合视频总时长去计算合适的进度值
                mHomeFragment.setProgressDialog(progress, progressTime);
            }
        }

        @Override
        public void onCancel() {
            final TranscodeMp3Dialog mHomeFragment = mWeakReference.get();
            if (mHomeFragment != null) {
                mHomeFragment.progressDialog(0, mHomeFragment.getContext().getString(R.string.canceled));
            }
        }

        @Override
        public void onError(String message) {
            final TranscodeMp3Dialog mHomeFragment = mWeakReference.get();
            if (mHomeFragment != null) {
                mHomeFragment.progressDialog(-1, mHomeFragment.getContext().getString(R.string.handle_error) + message);
            }
        }
    }

    @Override
    public void onDetachedFromWindow() {
        super.onDetachedFromWindow();
        //if (null != myRxFFmpegSubscriber) {
         //   myRxFFmpegSubscriber.dispose();
       // }
    }

    private void progressDialog(int code, String s) {
        Log.e("TranscodeMp3Dialog   ", s);
        if (code == 1) {
            callback.success(outputPath);
            dismiss();
        } else if (code == -1) {
            callback.fail(code, this.getContext().getString(R.string.transcode_error));
            dismiss();
        } else if (code == 0) {
            callback.fail(0, this.getContext().getString(R.string.transcode_cancel));
            dismiss();
        }
    }

    private void setProgressDialog(int progress, long progressTime) {
        tv_progress.setText(progress + "%");
        Log.e("TranscodeMp3Dialog   ", "progress:" + progress + "   progressTime:" + progressTime);
    }

    // 获取文件扩展名
    public static String getExtensionName(String filename) {
        if ((filename != null) && (filename.length() > 0)) {
            int dot = filename.lastIndexOf('.');
            if ((dot > -1) && (dot < (filename.length() - 1))) {
                return filename.substring(dot + 1);
            }
        }
        return "";
    }

}

免费评分

参与人数 1热心值 +1 收起 理由
yongbuchurou + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止回复与主题无关非技术内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-5-6 08:16

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表