android 如何通过触摸裁剪视频?
How does crop video by touch in android?
我需要裁剪(不是 trim)我 app.The 裁剪的视频可以是方形或矩形。
您应该使用 fenster android 库来播放视频。这个库提供了支持规模类型 'crop'.
https://github.com/malmstein/fenster
<com.malmstein.fenster.view.FensterVideoView
android:id="@+id/play_video_texture"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:scaleType="crop" />
https://github.com/crust87/Android-VideoCropView
使用这个库我们可以裁剪视频
我需要裁剪(不是 trim)我 app.The 裁剪的视频可以是方形或矩形。
您应该使用 fenster android 库来播放视频。这个库提供了支持规模类型 'crop'.
https://github.com/malmstein/fenster
<com.malmstein.fenster.view.FensterVideoView
android:id="@+id/play_video_texture"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:scaleType="crop" />
https://github.com/crust87/Android-VideoCropView
使用这个库我们可以裁剪视频