Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.knowledge4life:k4l-video-trimmer:'
}
dependencies {
implementation("com.github.knowledge4life:k4l-video-trimmer:")
}
<dependency>
<groupId>com.github.knowledge4life</groupId>
<artifactId>k4l-video-trimmer</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.knowledge4life" % "k4l-video-trimmer" % ""
:dependencies [[com.github.knowledge4life/k4l-video-trimmer ""]]
For a working implementation, please have a look at the Sample Project - sample
Include the library as local library project.
compile 'life.knowledge4:k4l-video-trimmer:1.0'
Add K4LVideoTrimmer component into your layout.
<life.knowledge4.videotrimmer.K4LVideoTrimmer
android:id="@+id/timeLine"
android:layout_height="match_parent"
android:layout_width="match_parent" />
Set the K4LVideoTrimmer selected video Uri.
K4LVideoTrimmer videoTrimmer = ((K4LVideoTrimmer) findViewById(R.id.timeLine));
if (videoTrimmer != null) {
videoTrimmer.setVideoURI(Uri.parse(path));
}
Environment.getExternalStorageDirectory()
Implements OnTrimVideoListener
methods
@Override
public void getResult(final Uri uri) {
// handle K4LVideoTrimmer result.
}
@Override
public void cancelAction() {
// handle K4LVideoTrimmer cancel action
}
Custom destination folder
videoTrimmer.setDestinationPath("/storage/emulated/0/DCIM/CameraCustom/");
Set maximum video time interval
videoTrimmer.setMaxDuration(10);
setMinDuration
Add the sonatype snapshots repository.
'https://oss.sonatype.org/content/repositories/snapshots/'
Example:
repositories{
flatDir{
dirs 'libs'
}
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
Then:
compile 'life.knowledge4:k4l-video-trimmer:1.1.3-SNAPSHOT'
There are many ways of improving and adding more features, so feel free to collaborate with ideas, issues and/or pull requests.
We’d be really happy if you sent us links to your projects where you use our component. Just create an issue and let us know if you have any questions or suggestion regarding the library.