Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.dstukalov.videoconverter:videoconverter

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.dstukalov.videoconverter:videoconverter

Video conversion library

  • 1.9
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

Maven Central GitHub license Codacy Badge

VideoConverter

Video file conversion library based on ExtractDecodeEditEncodeMuxTest.java CTS test

Installation

VideoConverter is installed by adding the following dependency to your app/build.gradle file:

dependencies {
    implementation 'com.dstukalov:videoconverter:1.9'
}

You may also need to add the following to your project/build.gradle file:

repositories {
    ...
    mavenCentral()
}

Usage

MediaConverter converter = new MediaConverter();
converter.setInput(context, uri);
converter.setOutput(outputStream);
converter.setTimeRange(timeFrom, timeTo);
converter.setVideoResolution(360);
converter.setVideoBitrate(2000000);
converter.setAudioBitrate(128000);

converter.setListener(percent -> {
    publishProgress(percent);
    return isCancelled();
});

converter.convert();

Demo

Android app on Google Play

FAQs

Package last updated on 22 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc