android video trimmer
1.7.19
実用的な実装については、サンプル プロジェクトをご覧ください。
build.gradle
ファイルに依存関係を追加します。 // replace x.y.z with latest available jitpack version
dependencies {
implementation ' com.github.a914-gowtham:android-video-trimmer:x.y.z '
}
build.gradle
ファイルに追加します。 allprojects {
repositories {
maven { url ' https://jitpack.io ' }
}
}
//Java
ActivityResultLauncher < Intent > startForResult = registerForActivityResult (
new ActivityResultContracts . StartActivityForResult (),
result -> {
if ( result . getResultCode () == Activity . RESULT_OK &&
result . getData () != null ) {
Uri uri = Uri . parse ( TrimVideo . getTrimmedVideoPath ( result . getData ()));
Log . d ( TAG , "Trimmed path:: " + uri );
} else
LogMessage . v ( "videoTrimResultLauncher data is null" );
});
// Kotlin
val startForResult = registerForActivityResult( ActivityResultContracts . StartActivityForResult ()) {
result : ActivityResult ->
if (result.resultCode == Activity . RESULT_OK &&
result.getData() != null ) {
Uri uri = Uri .parse( TrimVideo .getTrimmedVideoPath(result.getData()))
Log .d( TAG , " Trimmed path:: " + uri)
} else
LogMessage .v( " videoTrimResultLauncher data is null " );
}
TrimVideo . activity ( String . valueOf ( videoUri ))
. setHideSeekBar ( true )
. start ( this , startForResult );
TrimVideo . activity ( String . valueOf ( videoUri ))
. setHideSeekBar ( true )
. start ( this , startForResult );
TrimVideo . activity ( String . valueOf ( videoUri ))
. setAccurateCut ( true )
. setHideSeekBar ( true )
. start ( this , startForResult );
. setCompressOption ( new CompressOption ( frameRate , bitRate , width , height )) //pass empty constructor for default compressoption
FrameRate
推奨フレームレートは 30 ですBitRate
ビットレートは 150k ~ 1000k、または 1M ~ 10M の間で指定できます。ビットレートが低いと、ビデオの品質とサイズが低下する可能性があります。まともな品質の出力には 1M を使用してくださいWidth
ビデオ出力ビデオの幅。Height
ビデオ出力ビデオの高さ。TrimmerUtils.getVideoWidthHeight TrimmerUtils.getVideoWidthHeight(this,Uri.parse(videoUri));
動画の幅と高さを取得するメソッド TrimVideo . activity ( String . valueOf ( videoUri ))
. setCompressOption ( new CompressOption ( 30 , "1M" , 460 , 320 )) //pass empty constructor for default compress values
. setHideSeekBar ( true )
. start ( this , startForResult );
//You could divide the width and height by 2. when try to compress a large resolution videos ex:Taken from camera
/*int[] wAndh=TrimmerUtils.getVideoWidthHeight(this,Uri.parse(videoUri));
int width=wAndh[0];
int height=wAndh[1];
if(wAndh[0]>800){
width/=2;
width/=2;
.setCompressOption(new CompressOption(30,"1M",width,height))
}else
.setCompressOption(new CompressOption(30,"400k",width,height))
*/
. setHideSeekBar ( true ) //default value is false
TrimVideo . activity ( videoUri )
. start ( this , startForResult );
TrimVideo . activity ( videoUri )
. setTrimType ( TrimType . FIXED_DURATION )
. setFixedDuration ( 30 ) //seconds
. start ( this , startForResult );
TrimVideo . activity ( videoUri )
. setTrimType ( TrimType . MIN_DURATION )
. setMinDuration ( 30 ) //seconds
. start ( this , startForResult );
TrimVideo . activity ( videoUri )
. setTrimType ( TrimType . MIN_MAX_DURATION )
. setMinToMax ( 10 , 30 ) //seconds
. start ( this , startForResult );
- dontwarn com.gowtham.library **
- keep class com.gowtham.library ** { * ; }
- keep interface com.gowtham.library ** { * ; }
このライブラリは、MIT ライセンスに基づいてライセンスされています。
このライブラリは、LGPL v3.0 に基づいてライセンスされている FFmpeg を使用します。
FFmpeg のソース コードは https://github.com/arthenica/ffmpeg-kit から入手できます。
このプロジェクトで使用されている FFmpeg ライブラリを置換または変更したい場合は、次の手順に従ってください。
library/build.gradle
ディレクトリ内の既存の FFmpeg ライブラリ Maven URL を置き換えます。このリポジトリにスターを付けてサポートを示してください。
機能を改善したり追加したりする方法はたくさんあるので、アイデア、問題、プル リクエストなどで自由にコラボレーションしてください。