0

我有一个应用程序通过 RTSP 将视频发送到媒体服务器,然后可以访问该服务器。我的问题是如何放大视频源(即使我可以在代码中添加一个固定的缩放值)。我正在使用 libstreaming 库,所以我有点不确定在使用它时如何添加缩放功能。

我在我的initRtspClient功能中配置相机分辨率等:

  private void initRtspClient() {
    // Configures the SessionBuilder
    mSession = SessionBuilder.getInstance()
        .setContext(getApplicationContext())
        .setAudioEncoder(SessionBuilder.AUDIO_NONE)
        .setVideoEncoder(SessionBuilder.VIDEO_H264)
        .setVideoQuality(new VideoQuality(640, 480, 20, 500000))
        .setSurfaceView(mSurfaceView).setPreviewOrientation(0)
        .setCallback(this).build();
        ...
}

当我设置这些其他参数时,我是否只需添加代码来设置相机的缩放级别?

4

1 回答 1

0

我认为您必须使用以下教程 SmartCamera 。这将为您提供缩放功能。

https://github.com/xjefftang/smartcamera

希望它可以帮助你。

于 2015-03-05T12:43:29.610 回答