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(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를 사용합니다.
https://github.com/arthenica/ffmpeg-kit에서 FFmpeg의 소스 코드를 얻을 수 있습니다.
이 프로젝트에 사용된 FFmpeg 라이브러리를 교체하거나 수정하려면 다음 단계를 따르세요.
library/build.gradle
디렉터리에서 기존 FFmpeg 라이브러리 maven URL을 바꿉니다.이 저장소에 별표를 표시하여 여러분의 지지를 보여주세요.
더 많은 기능을 개선하고 추가하는 방법은 다양하므로 아이디어, 문제 및/또는 끌어오기 요청에 대해 자유롭게 협업하세요.