INNER CODE UNIT · Java

append

microshow/RxFFmpeg · rxffmpeg/src/main/java/io/microshow/rxffmpeg/RxFFmpegCommandList.java:35

    public RxFFmpegCommandList append(String s) {
        this.add(s);
        return this;
    }

    /**
     * 构建命令
     *
     * @return -
     */
    public String[] build() {
        String[] command = new String[this.size()];
        for (int i = 0; i < this.size(); i++) {
            command[i] = this.get(i);
        }
        return command;
    }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…