作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在寻找将在 android 中进行视频旋转的程序代码。
我之前使用以下代码完成了图像旋转。
bMap = BitmapFactory.decodeResource(getResources(), R.drawable.aa_presell_ribs);
//Create object of new Matrix.
matrix = new Matrix();
//set image rotation value to 270 degrees in matrix.
matrix.postRotate(270);
//Create bitmap with new values.
Bitmap bMapRotate = Bitmap.createBitmap(bMap, 0, 0, bMap.getWidth(), bMap.getHeight(), matrix, true);
//put rotated image in ImageView.
imageView.setImageBitmap(bMapRotate);
我已经在谷歌和其他来源上进行了搜索,但找不到这样的代码。
最佳答案
看看FFMPEG - 它或许可以帮助您处理手机上的视频。 Here are the instructions关于如何为 Android 构建它。
关于android - 如何在 android 中将视频旋转 90、180 或 270 度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22371426/
我是一名优秀的程序员,十分优秀!