NIMSDK-AOS  9.20.10
AVChatFileVideoCapturer.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.avchat.video;
2 
3 import com.netease.nrtc.sdk.video.FileVideoCapturer;
4 import com.netease.nrtc.sdk.video.IVideoCapturer;
5 
6 import java.io.IOException;
7 
8 /**
9  * 支持格式:
10  * Y4M : color space I420 or I420mpeg2
11  */
12 public class AVChatFileVideoCapturer extends FileVideoCapturer implements AVChatVideoCapturer {
13  public AVChatFileVideoCapturer(String inputFile) throws IOException {
14  super(inputFile);
15  }
16 
17  @Override
18  public IVideoCapturer asVideoCapturer() {
19  return this;
20  }
21 }
支持格式: Y4M : color space I420 or I420mpeg2