We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This project provides an JAVA implementation of the Zencoder API. Zencoder is a Video encoding service.
See: http://zencoder.com/docs/api/
Current release: 0.9.3
Maven site: here (Information about this project)
JavaDoc: here
Add our repository:
<repository> <id>release</id> <name>Bitzeche Releases</name> <url>http://trac.bitzeche.de/archiva/repository/release/</url> </repository>
And add a dependency:
<dependency> <groupId>de.bitzeche.video.transcoding</groupId> <artifactId>zencoder-api</artifactId> <version>0.9.2</version> </dependency>
Dependencies:
IZencoderClient client = new ZencoderClient("APIKEY"); ZencoderJob job = new ZencoderJob("s3://bucket/original.mp4"); job.setTest(true); ZencoderOutput output = new ZencoderOutput("test", "s3://bucket/file.m4v"); output.setAudioBitrate(64); job.addOutput(output); client.createJob(job);
If you have a suggestion or a patch or want to contribute in any form to the project, feel free to contact us. Help is always very welcome.