91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現下載m3u8視頻文件功能

發布時間:2023-01-17 09:29:12 來源:億速云 閱讀:112 作者:iii 欄目:開發技術

本篇內容主要講解“Android如何實現下載m3u8視頻文件功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Android如何實現下載m3u8視頻文件功能”吧!

    簡介

    Aria

    下載器采用開源框架Aria

    github

    中文文檔

    導入Aria

       implementation 'me.laoyuyu.aria:core:3.8.16'
        annotationProcessor 'me.laoyuyu.aria:compiler:3.8.16'
        implementation 'me.laoyuyu.aria:m3u8:3.8.16'

    介紹

    service在Appliaction中啟動,即啟動app即啟動service并且service只啟動一次,后序通過單例binder去調用服務

    啟動Service

    在Application中默認啟動Service

    private void bindService(){
            DownloadService.bindService(this, new ServiceConnection() {
                @Override
                public void onServiceConnected(ComponentName name, IBinder service) {
                }
                @Override
                public void onServiceDisconnected(ComponentName name) {
                    downloadService = null;
                }
            });
        }

    DownloadService

    用于Aplication調用起服務

    public static void bindService(Context context, ServiceConnection connection){
            Intent intent = new Intent(context, DownloadService.class);
            context.bindService(intent, connection, Service.BIND_AUTO_CREATE);
        }

    注冊下載器

    @Override
        public void onCreate() {
            super.onCreate();
            Aria.download(this).register();
            Log.d("DownloadService","create service");
        }

    若上次有未下載完成的視頻,則恢復下載,并將binder賦給另一個單例binder,后續使用binder進行具體下載事項

    @Nullable
        @Override
        public IBinder onBind(Intent intent) {
            Log.d("DownloadService","bind service");
            long taskId = (long)SP.getInstance().GetData(BaseApplication.getContext(),"lastDownloadID",0L);
            if (taskId != 0L){
                List<DownloadEntity> entityList = Aria.download(this).getAllNotCompleteTask();
                if (entityList != null){
                    HttpNormalTarget target = Aria.download(this).load(taskId);
                    if (target.getTaskState() != STATE_COMPLETE){
                        target.m3u8VodOption(DownloadBinder.getInstance().getOption());
                        target.resume();
                        Log.d("DownloadService","resume download");
                    } else {
                        HttpNormalTarget resume =  Aria.download(this).load( entityList.get(0).getId());
                        resume.m3u8VodOption(DownloadBinder.getInstance().getOption());
                        if ((resume.getTaskState() == STATE_FAIL) || (resume.getTaskState() == STATE_OTHER)){
                            resume.resetState();
                            Log.d("DownloadService","resetState");
                        }else {
                            resume.resume();
                            Log.d("DownloadService","resumeState");
                        }
                    }
                }
            }
            return DownloadBinder.getInstance();
        }

    注銷aria下載器和解除binder綁定

     @Override
        public boolean onUnbind(Intent intent) {
            Log.d("DownloadService","unbind service");
            return super.onUnbind(intent);
        }
        @Override
        public void onDestroy() {
            super.onDestroy();
            Aria.download(this).unRegister();
            Log.d("DownloadService","service onDestroy");
        }

    下載回調

    然后將Aria下載器的回調在進行一次中轉,回調至單例binder,后面在下載就不需要binder服務,直接調用單例binder即可

        @Download.onNoSupportBreakPoint public void onNoSupportBreakPoint(DownloadTask task) {
            Log.d("DownloadService","該下載鏈接不支持斷點");
           // DownloadBinder.getInstance().onTaskStart(task);
        }
        @Download.onTaskStart public void onTaskStart(DownloadTask task) {
            Log.d("DownloadService",task.getDownloadEntity().getFileName() +":開始下載");
            DownloadBinder.getInstance().onTaskStart(task);
        }
        @Download.onTaskStop public void onTaskStop(DownloadTask task) {
            Log.d("DownloadService",task.getDownloadEntity().getFileName() +":停止下載");
            DownloadBinder.getInstance().onTaskStop(task);
        }
        @Download.onTaskCancel public void onTaskCancel(DownloadTask task) {
            Log.d("DownloadService",task.getDownloadEntity().getFileName() +":取消下載");
            DownloadBinder.getInstance().onTaskCancel(task);
        }
        @Download.onTaskFail public void onTaskFail(DownloadTask task) {
            Log.d("DownloadService",task.getDownloadEntity().getFileName() +":下載失敗");
            DownloadBinder.getInstance().onTaskFail(task);
        }
        @Download.onTaskComplete public void onTaskComplete(DownloadTask task) {
            Log.d("DownloadService",task.getDownloadEntity().getFileName() +":下載完成");
            DownloadBinder.getInstance().onTaskComplete(task);
        }
        /**
         * @param e 異常信息
         */
        @Download.onTaskFail void taskFail(DownloadTask task, Exception e) {
            try {
                DownloadBinder.getInstance().taskFail(task,e);
                ALog.d("DownloadService", task.getDownloadEntity().getFileName() +"error:"+ALog.getExceptionString(e));
            }catch (Exception ee){
                ee.printStackTrace();
            }
        }
        @Download.onTaskRunning public void onTaskRunning(DownloadTask task) {
            Log.d("DownloadService","pre = "+task.getPercent()+"   "+"speed = "+ task.getConvertSpeed());
            DownloadBinder.getInstance().onTaskRunning(task);
        }
    }

    回調接口

    將服務中的Aria回調,回調至單例binder中

    public interface ServiceCallback {
        void onTaskStart(DownloadTask task);
        void onTaskStop(DownloadTask task);
        void onTaskCancel(DownloadTask task);
        void onTaskFail(DownloadTask task);
        void onTaskComplete(DownloadTask task);
        void onTaskRunning(DownloadTask task);
        void taskFail(DownloadTask task, Exception e);
    }

    單例Binder

    構造單例

    public class DownloadBinder extends Binder implements ServiceCallback {
     private static DownloadBinder binder;
        private DownloadBinder() {
        }
        public static DownloadBinder getInstance() {
            if (binder == null) {
                binder = new DownloadBinder();
                downloadReceiver = Aria.download(BaseApplication.getContext());
            }
            return binder;
        }

    下載

    將下載信息傳入,并以視頻type+id+name等構件下載文件夾名稱,確保唯一性,然后通過配置Aria Option,使其切換至m3u8文件下載模式,具體配置文件還可配置下載速度、最大下載文件數量、線程數等等。

    Aria自帶數據庫,可通過其數據庫保存一些數據,但讀取數據較慢

        public void startDownload(DownloadBean downloadBean) {
            if (downloadBean == null) return;
            String locationDir = FileUtils.getInstance().mainCatalogue();
            String name = downloadBean.getVideoType()+downloadBean.gettId() + downloadBean.getsId() + downloadBean.geteId();
            String subFile = FileUtils.getInstance().createFile(locationDir, name);
            String path = subFile + File.separator + name + ".m3u8";
            Log.d("DownloadService", "start download");
            boolean isExist = IsExist(path);
            if (isExist) {
                Log.d("DownloadService", "exist same item");
                if (repeatTaskId != 0) {
                    if (Aria.download(this).load(repeatTaskId).getTaskState() != STATE_RUNNING) {
                        if (downloadReceiver.load(repeatTaskId).getEntity().getRealUrl().equals(downloadBean.getVideoUrl())) {
                            downloadReceiver.load(repeatTaskId).m3u8VodOption(DownloadBinder.getInstance().getOption());
                            downloadReceiver.load(repeatTaskId).resume();
                        } else {
                            downloadReceiver.load(repeatTaskId).m3u8VodOption(DownloadBinder.getInstance().getOption());
                            downloadReceiver.load(repeatTaskId).updateUrl(downloadBean.getVideoUrl()).resume();
                        }
                    }
                    Log.d("DownloadService", "resume exist same item");
                    return;
                }
            }
            HttpBuilderTarget target = downloadReceiver.load(downloadBean.getVideoUrl())
                    .setFilePath(path)
                    .ignoreFilePathOccupy()
                    .m3u8VodOption(getOption());
            List<DownloadEntity> downloadEntityList = downloadReceiver.getDRunningTask();
            if (downloadEntityList == null) {
                repeatTaskId = target.create();
            } else {
                repeatTaskId = target.add();
            }
            try {
                repeatTaskId = target.getEntity().getId();
                downloadBean.setTaskId(repeatTaskId);
                SP.getInstance().PutData(BaseApplication.getContext(),"lastDownloadID",repeatTaskId);
                target.setExtendField(new Gson().toJson(downloadBean)).getEntity().save();
            }catch (NullPointerException e){
                e.printStackTrace();
            }
        }

    輻射

    再一次將service回調的接口回調至binder的接口,通過EventBus輻射至外部,通過一層層封裝,在外部監聽當前文件下載狀態,只需通過監聽EventBus事件即可

     /**
         * download status
         * 0:prepare
         * 1:starting
         * 2:pause
         * 3:cancel
         * 4:failed
         * 5:completed
         * 6:running
         * 7:exception*/
        @Override
        public void onTaskStart(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(1,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void onTaskStop(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(2,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void onTaskCancel(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(3,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void onTaskFail(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(4,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void onTaskComplete(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(5,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void onTaskRunning(DownloadTask task) {
            EventBus.getDefault().postSticky(new DownloadStatusBean(6,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
        }
        @Override
        public void taskFail(DownloadTask task, Exception e) {
            try {
                EventBus.getDefault().postSticky(new DownloadStatusBean(4,task.getDownloadEntity().getId(), task.getConvertSpeed(), task.getPercent(),task.getConvertFileSize(),task.getFilePath()));
            }catch (NullPointerException ee){
                ee.printStackTrace();
            }
        }
    }

    創建下載實例

    一句話我們就可以實現視頻下載,然后后天服務自動回調給binder,然后binder回調給EventBus

     DownloadBean bean = new DownloadBean(0L,m_id,"","",sourceBean.getLink(),detailBean.getCover(),detailBean.getTitle(),"","","movie","",0);
      DownloadBinder.getInstance().startDownload(bean);

    監聽下載狀態

    然后只需要在需要更新界面的地方注冊EventBus即可,通過封裝,不同的類做不同的事情,將數據處理和UI更新進行隔離,可以提高代碼閱讀和執行效率

     /**
         * download status
         * 0:prepare
         * 1:starting
         * 2:pause
         * 3:cancel
         * 4:failed
         * 5:completed
         * 6:running
         * 7:exception*/
        /**
         * 下載item狀態監聽*/
        @Subscribe(threadMode = ThreadMode.MAIN, sticky = true)
        public void OnEvent(DownloadStatusBean bean) {
            taskID = bean.getTaskID();
            switch (bean.getStatus()) {
                case 1:
                    getRunningItem();
                    Log.d("DownloadService", "status start");
                    break;
                case 2:
                    updateStatus(bean);
                    Log.d("DownloadService", "status pause");
                    break;
                case 3:
                    if ((index == -1) && (beanList.size() > 0)){
                        index = 0;
                    }
                    Log.d("DownloadService", "status cancel"+bean.getTaskID());
                    break;
                case 4:
                    //update url
                    failCount++;
                    if (failCount >= 3){
                        failedReconnect(bean);
                        failCount = 0;
                        isRunning = true;
                        Log.d("DownloadService", "status fail in");
                    }
                    Log.d("DownloadService", "status fail");
                    break;
                case 5:
                    removeDownloadBead(bean.getTaskID());
                    startDownload();
                    Log.d("DownloadService", "status complete");
                    break;
                case 6:
                    if (isRunning) {
                        getRunningItem();
                    }
                    updateCurItem(bean);
                    Log.d("DownloadService", "status running: "+index);
                    break;
            }
        }

    到此,相信大家對“Android如何實現下載m3u8視頻文件功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    汉源县| 大埔区| 福贡县| 兴和县| 民县| 龙海市| 定安县| 潞城市| 张北县| 仪陇县| 栖霞市| 渭源县| 广水市| 昌江| 盐边县| 霍林郭勒市| 呈贡县| 塔河县| 南靖县| 来宾市| 略阳县| 大名县| 鄄城县| 丰城市| 雅江县| 凌云县| 甘洛县| 湄潭县| 凤冈县| 阳新县| 新津县| 中牟县| 乐平市| 满城县| 姚安县| 威海市| 上犹县| 青海省| 绵阳市| 深水埗区| 吉安市|