我在哪里可以找到Android中保存的图像?

时间:2016-10-29 19:57:02

标签: android ffmpeg save android-ffmpeg

对不起,快问:

我有这个视频流例程,我接收数据包,将它们转换为byte [],然后转换为位图,然后在屏幕上显示:

dsocket.receive(packetReceived); // receive packet
byte[] buff = packetReceived.getData(); // convert packet to byte[]
final Bitmap ReceivedImage = BitmapFactory.decodeByteArray(buff, 0, buff.length); // convert byte[] to bitmap image

runOnUiThread(new Runnable()
{
    @Override
    public void run()
    {
        // this is executed on the main (UI) thread
        imageView.setImageBitmap(ReceivedImage);
    }
});

现在,我想实现录制功能。建议说我需要使用FFmpeg(我不知道怎么做)但首先,我需要准备一个有序图像的目录,然后将其转换为视频文件。这样做我将在内部保存所有图像,并且我使用this answer来保存每个图像:

if(RecordVideo && !PauseRecording) {
    saveToInternalStorage(ReceivedImage, ImageNumber);
    ImageNumber++;
}
else
{
    if(!RecordVideo)
        ImageNumber = 0;
}

// ...

private void saveToInternalStorage(Bitmap bitmapImage, int counter){
        ContextWrapper cw = new ContextWrapper(getApplicationContext());

        // path to /data/data/yourapp/app_data/imageDir
        File MyDirectory = cw.getDir("imageDir", Context.MODE_PRIVATE);

        // Create imageDir
        File MyPath = new File(MyDirectory,"Image" + counter + ".jpg");

        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(MyPath);

            // Use the compress method on the BitMap object to write image to the OutputStream
            bitmapImage.compress(Bitmap.CompressFormat.PNG, 100, fos);

        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        //return MyDirectory.getAbsolutePath();
    }

但我似乎无法在我的设备上找到该目录(要实际查看我是否成功创建了该目录)// path to /data/data/yourapp/app_data/imageDir位于何处?

1 个答案:

答案 0 :(得分:1)

getDir ContextWrapper方法会根据docs自动创建imageDir目录(如果该目录尚不存在)。此外,除非您具有root访问权限,否则无法访问应用程序代码之外的/data目录中的任何内容。如果要查看保存在此目录中的图像,可以在命令提示符下运行adb工具,将图像移动到可公开访问的目录中:

adb shell run-as com.your.packagename cp -r /data/data/com.your.packagename/app_data/imageDir /sdcard/imageDir

请注意,run-as命令仅在您的应用程序可调试时才有效。

您可以将/sdcard/imageDir替换为您有权访问设备的任何目录。如果您希望随后将文件从设备移到计算机上,可以使用adb pull从公共目录中提取文件:

adb pull /sdcard/myDir C:\Users\Desktop

再次,将/sdcard/myDirC:\Users\Desktop替换为适当的源和目标目录。