This project provides the easiest way to include FFmpeg into any Android project with almost no NDK building and tweaking. Of course if you want to customize FFmpeg, you will have to build the project from scratch.
Forked from appunite/AndroidFFmpeg, this project has a few enhancements to make it easier to develop and embed videos to your app. I have added some more functionality and a new simple project for developers to get started with. This project follows AndroidFFmpeg closely.
Read the wikis for this work. Even if you are a beginner to NDK, this project should be comprehensable enough to include VPlayer into your project. I provide prebuilt binaries for the project.
This is a very simple example that plays a video after starting the activity. You can view more integration tutorials here.
public class VideoActivity extends Activity {
private VPlayerView mPlayerView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Attach the player
mPlayerView = new VPlayerView(this);
setContentView(mPlayerView);
// Set the content and play the video
mPlayerView.setDataSource(path);
mPlayerView.play();
}
@Override
protected void onPause() {
super.onPause();
mPlayerView.onPause();
}
@Override
protected void onResume() {
super.onResume();
mPlayerView.onResume();
}
@Override
public void finish() {
super.finish();
mPlayerView.finish();
}
}
You can clone the project here:
git clone https://github.com/matthewn4444/VPlayer_lib.git
For building the project, please refer here.
Copyright (C) 2015 Matthew Ng Licensed under the Apache License, Verision 2.0
AndroidFFmpeg, FFmpeg, libpng, fdk-aac, fribidi, libvo-aacenc, vo-amrwbenc, tropicssl, and libyuv are distributed on theirs own license.
We do not grant of patent rights. Some codecs use patented techniques and before use those parts of library you have to buy thrid-party patents.
This library was modified by Matthew Ng from the original author Jacek Marchwicki from Appunite.com and other libraries he used. Also thanks to his issues page that fixed a bunch of issues.