All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gstreamer.elements.FileSink Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/* 
 * Copyright (c) 2008 Levente Farkas
 * 
 * This file is part of gstreamer-java.
 *
 * This code is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License version 3 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with this work.  If not, see .
 */

package org.gstreamer.elements;

/**
 * A gstreamer element that write to a file.
 */
public class FileSink extends BaseSink {
	public static final String GST_NAME = "filesink";

    public FileSink(String name) {
        this(makeRawElement(GST_NAME, name));
    }  

    public FileSink(Initializer init) {
        super(init);
    }
    /**
     * Sets the path of the file this source is to read.
     * 
     * @param location the path to the file to read.
     */
    public void setLocation(java.io.File location) {
        setLocation(location.getAbsolutePath());
    }
    
    /**
     * Sets the path of the file this source is to read.
     * 
     * @param location the path to the file to read.
     */
    public void setLocation(String location) {
        set("location", location);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy