我正在录制视频并将录制保存在 sdcard 内的文件夹中。现在当我从 sdcard 播放视频时,我想在视频视图中添加日期和时间,我完成了图像意味着能够使用帧布局在图像视图中添加时间戳和 Z-index,但是如何通过视频录制来完成 .. 是否可能?如果是,请提出任何建议..我在图像中添加时间戳的代码如下所示,参考网址为 ..:
现在如何为视频做同样的事情?
任何帮助都会在这里得到极大的赞赏......
Bitmap src = BitmapFactory.decodeResource(getResources(), R.drawable.splashmodified); // the original file is cuty.jpg i added in resources
Bitmap dest = Bitmap.createBitmap(src.getWidth(), src.getHeight(), Bitmap.Config.ARGB_8888);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateTime = sdf.format(Calendar.getInstance().getTime()); // reading local time in the system
Canvas cs = new Canvas(dest);
Paint tPaint = new Paint();
tPaint.setTextSize(35);
tPaint.setColor(Color.BLUE);
tPaint.setStyle(Style.FILL);
cs.drawBitmap(src, 0f, 0f, null);
float height = tPaint.measureText("yY");
cs.drawText(dateTime, 20f, height+15f, tPaint);
try {
dest.compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(new File("/sdcard/timeStampedImage.jpg")));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}