是的,你可以使用 libstagefright,它非常强大。
由于 stagefright 没有暴露于 NDK,所以你将不得不做额外的工作。
有两种方法:
(1) 使用 android 完整源代码树构建您的项目。这种方式需要几天的时间来设置,一旦准备好,它就很容易了,你可以充分利用怯场。
(2) 您可以将包含文件复制到您的项目中,它位于此文件夹中:
android-4.0.4_r1.1/frameworks/base/include/media/stagefright
然后您将通过动态加载 libstagefright.so 导出库函数,并且您可以链接到您的 jni 项目。
使用 statgefright 进行编码/解码非常简单,几百行就可以了。
我使用 stagefright 捕获屏幕截图以创建一个视频,该视频将在我们的 Android VNC 服务器中提供,即将发布。
以下是一个片段,我认为它比使用 ffmpeg 编码电影更好。您也可以添加音频源。
class ImageSource : public MediaSource {
ImageSource(int width, int height, int colorFormat)
: mWidth(width),
mHeight(height),
mColorFormat(colorFormat)
{
}
virtual status_t read(
MediaBuffer **buffer, const MediaSource::ReadOptions *options) {
// here you can fill the buffer with your pixels
}
...
};
int width = 720;
int height = 480;
sp<MediaSource> img_source = new ImageSource(width, height, colorFormat);
sp<MetaData> enc_meta = new MetaData;
// enc_meta->setCString(kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_H263);
// enc_meta->setCString(kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_MPEG4);
enc_meta->setCString(kKeyMIMEType, MEDIA_MIMETYPE_VIDEO_AVC);
enc_meta->setInt32(kKeyWidth, width);
enc_meta->setInt32(kKeyHeight, height);
enc_meta->setInt32(kKeySampleRate, kFramerate);
enc_meta->setInt32(kKeyBitRate, kVideoBitRate);
enc_meta->setInt32(kKeyStride, width);
enc_meta->setInt32(kKeySliceHeight, height);
enc_meta->setInt32(kKeyIFramesInterval, kIFramesIntervalSec);
enc_meta->setInt32(kKeyColorFormat, colorFormat);
sp<MediaSource> encoder =
OMXCodec::Create(
client.interface(), enc_meta, true, image_source);
sp<MPEG4Writer> writer = new MPEG4Writer("/sdcard/screenshot.mp4");
writer->addSource(encoder);
// you can add an audio source here if you want to encode audio as well
//
//sp<MediaSource> audioEncoder =
// OMXCodec::Create(client.interface(), encMetaAudio, true, audioSource);
//writer->addSource(audioEncoder);
writer->setMaxFileDuration(kDurationUs);
CHECK_EQ(OK, writer->start());
while (!writer->reachedEOS()) {
fprintf(stderr, ".");
usleep(100000);
}
err = writer->stop();