Java源码示例:org.webrtc.FileVideoCapturer

示例1
public static VideoCapturer createFileVideoCapturer(String path) {
    try {
        return new FileVideoCapturer(path);
    } catch (IOException e) {
        return null;
    }
}