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.iknow4:Android-Video-Trimmer:'
}
dependencies {
implementation("com.github.iknow4:Android-Video-Trimmer:")
}
<dependency>
<groupId>com.github.iknow4</groupId>
<artifactId>Android-Video-Trimmer</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.iknow4" % "Android-Video-Trimmer" % ""
:dependencies [[com.github.iknow4/Android-Video-Trimmer ""]]
Android Video Trimmer is a powerful open-source video processing tool designed specifically for the Android platform. In an Android ecosystem where video editing applications are scarce, this project aims to provide an efficient and user-friendly solution for video trimming and compression.
Note: Processed videos will be saved in the Android/data/[package_name]/cache
folder.
We welcome contributions of any kind! Here's how you can contribute:
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)This project is licensed under the MIT License. See the LICENSE file for more information.
<a href="https://github.com/iknow4x"><img width="60" height="60" src="https://github.com/iknow4x.png?size=500"/></a>
<a href="https://github.com/dpproduction"><img width="60" height="60" src="https://github.com/dpproduction.png?size=500"/></a><a href="https://github.com/iknow4x"><img width="60" height="60" src="https://github.com/iknow4x.png?size=500"/></a>
Original Author: iknow4x
</details> <details> <summary>中文</summary>Android Video Trimmer 是一个强大的开源视频处理工具,专为Android平台设计。在视频编辑应用匮乏的Android生态系统中,本项目旨在提供高效、易用的视频裁剪和压缩解决方案。
注意: 处理后的视频将保存在 Android/data/[包名]/cache
文件夹中。
我们欢迎任何形式的贡献!以下是您可以参与的方式:
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)本项目采用 MIT 许可证。查看 LICENSE 文件以获取更多信息。
<a href="https://github.com/iknow4x"><img width="60" height="60" src="https://github.com/iknow4x.png?size=500"/></a>
<a href="https://github.com/dpproduction"><img width="60" height="60" src="https://github.com/dpproduction.png?size=500"/></a><a href="https://github.com/iknow4x"><img width="60" height="60" src="https://github.com/iknow4x.png?size=500"/></a>
Original Author: iknow4x