titansgroup / k4l-video-trimmer

A library with UI and mechanisms to trim local videos on Android applications.
MIT License
784 stars 221 forks source link

MIT licensed GitHub stars GitHub forks Android Arsenal

VideoTrimmer

This project aims to provide an ultimate and flexible video trimmer experience.

VideoTrimmer Screenshot

Watch a DEMO here

Usage

For a working implementation, please have a look at the Sample Project - sample

  1. Include the library as local library project.

    compile 'life.knowledge4:k4l-video-trimmer:1.0'

  2. Add K4LVideoTrimmer component into your layout.

    <life.knowledge4.videotrimmer.K4LVideoTrimmer
        android:id="@+id/timeLine"
        android:layout_height="match_parent"
        android:layout_width="match_parent" />
  3. Set the K4LVideoTrimmer selected video Uri.

    K4LVideoTrimmer videoTrimmer = ((K4LVideoTrimmer) findViewById(R.id.timeLine));
    if (videoTrimmer != null) {
        videoTrimmer.setVideoURI(Uri.parse(path));
    }

Default destination folder

Environment.getExternalStorageDirectory()

Here is an example of a listener implementation.

  1. Implements OnTrimVideoListener methods

    @Override
    public void getResult(final Uri uri) {
        // handle K4LVideoTrimmer result.
    }
    
    @Override
    public void cancelAction() {
        // handle K4LVideoTrimmer cancel action
    }

Customization

Incoming improvements

Known issues and limitations

Compatibility

Using SNAPSHOTS

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'

Collaboration

There are many ways of improving and adding more features, so feel free to collaborate with ideas, issues and/or pull requests.

Let us know!

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.