短視訊app開發,長按將視訊儲存到相簿

zhibo系統開發發表於2022-02-17

短視訊app開發,長按將視訊儲存到相簿實現的相關程式碼

public static void videoSaveToNotifyGalleryToRefreshWhenVersionGreaterQ(Context context, File destFile) {
        ContentValues values = new ContentValues();
        Uri uriSavedVideo;
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
            values.put(MediaStore.Video.Media.RELATIVE_PATH, "Movies/Folder");
            values.put(MediaStore.Video.Media.TITLE, destFile.getName());
            values.put(MediaStore.Video.Media.DISPLAY_NAME, destFile.getName());
            values.put(MediaStore.Video.Media.MIME_TYPE, "video/mp4");
            values.put(MediaStore.Video.Media.DATE_ADDED, System.currentTimeMillis() / 1000);
            Uri collection = MediaStore.Video.Media.getContentUri(MediaStore.VOLUME_EXTERNAL_PRIMARY);
            uriSavedVideo = context.getContentResolver().insert(collection, values);
        } else {
            values.put(MediaStore.Video.Media.TITLE, destFile.getName());
            values.put(MediaStore.Video.Media.DISPLAY_NAME, destFile.getName());
            values.put(MediaStore.Video.Media.MIME_TYPE, "video/mp4");
            values.put(MediaStore.Video.Media.DATE_ADDED, System.currentTimeMillis() / 1000);
            values.put(MediaStore.Video.Media.DATA, destFile.getAbsolutePath());
            uriSavedVideo = context.getContentResolver().
                    insert(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, values);
        }
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
            values.put(MediaStore.Video.Media.DATE_TAKEN, System.currentTimeMillis());
            values.put(MediaStore.Video.Media.IS_PENDING, 1);
        }
        ParcelFileDescriptor pfd;
        try {
            pfd = context.getContentResolver().openFileDescriptor(uriSavedVideo, "w");
            FileOutputStream out = new FileOutputStream(pfd.getFileDescriptor());
            FileInputStream in = new FileInputStream(destFile);
            byte[] buf = new byte[8192];
            int len;
            while ((len = in.read(buf)) > 0) {
                out.write(buf, 0, len);
            }
            out.close();
            in.close();
            pfd.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
            values.clear();
            values.put(MediaStore.Video.Media.IS_PENDING, 0);
            context.getContentResolver().update(uriSavedVideo, values, null, null);
        }
    }


以上就是短視訊app開發,長按將視訊儲存到相簿實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2856126/,如需轉載,請註明出處,否則將追究法律責任。

相關文章