Android File Temp Create getTempVideoFile()

Here you can find the source of getTempVideoFile()

Description

get Temp Video File

License

Open Source License

Declaration

@SuppressLint("NewApi")
    public static Uri getTempVideoFile() 

Method Source Code

/**/*from  w w  w . ja v a2  s . c  om*/
 * The MIT License (MIT)

Copyright (c) 2013 Chute

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

import android.annotation.SuppressLint;
import android.content.Context;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Environment;
import android.provider.MediaStore.Images;
import android.provider.MediaStore.MediaColumns;
import com.araneaapps.android.libs.logger.ALog;
import com.getchute.android.photopickerplus.models.enums.DisplayType;
import com.chute.sdk.v2.model.enums.AccountType;
import com.chute.sdk.v2.utils.Utils;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.Locale;
import java.util.Map;
import java.util.Map.Entry;

public class Main{
    @SuppressLint("NewApi")
    public static Uri getTempVideoFile() {
        if (Environment.getExternalStorageState() == null) {
            return null;
        }
        File mediaStorage = new File(
                Environment
                        .getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM),
                "_VIDEO");
        if (!mediaStorage.exists() && !mediaStorage.mkdirs()) {
            ALog.e("Failed to create directory: " + mediaStorage);
            return null;
        }

        String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss",
                Locale.US).format(new Date());
        File mediaFile = new File(mediaStorage, "VID_" + timeStamp + ".mp4");
        return Uri.fromFile(mediaFile);
    }
}

Related

  1. getTempFile()
  2. getTempFile(String dir, String fileExt)
  3. getTempFile(String prefix, String suffix)
  4. getTempFile(String tmpName)
  5. getTempImageFile(Context context)
  6. newTmpFile(String content)
  7. newTmpFile(String content, String encoding)