android video trimmer
1.7.19
Para una implementación funcional, eche un vistazo al proyecto de muestra.
build.gradle
de su aplicación // replace x.y.z with latest available jitpack version
dependencies {
implementation ' com.github.a914-gowtham:android-video-trimmer:x.y.z '
}
build.gradle
del proyecto: 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
La velocidad de fotogramas recomendada es 30BitRate
puede estar entre 150k y 1000k o entre 1M y 10M. Una tasa de bits más baja puede reducir la calidad y el tamaño del video. Utilice 1M para obtener resultados de calidad decenteWidth
del video de salida de video.Height
Altura del video de salida de video.Use TrimmerUtils.getVideoWidthHeight(this,Uri.parse(videoUri));
método para obtener el ancho y alto del video 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 ** { * ; }
Esta biblioteca tiene la licencia MIT.
Esta biblioteca utiliza FFmpeg, que tiene licencia LGPL v3.0.
Puede obtener el código fuente de FFmpeg en https://github.com/arthenica/ffmpeg-kit
Si desea reemplazar o modificar la biblioteca FFmpeg utilizada en este proyecto, siga estos pasos:
library/build.gradle
.Muestra tu apoyo dándole una estrella a este repositorio.
Hay muchas formas de mejorar y agregar más funciones, así que siéntete libre de colaborar con ideas, problemas y/o solicitudes de extracción.