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

net.pms.io.OutputParams Maven / Gradle / Ivy

Go to download

PS3 Media Server is a cross-platform DLNA-compliant UPnP Media Server. Originally written to support the PlayStation 3, PS3 Media Server has been expanded to support a range of other media renderers, including smartphones, televisions, music players and more.

The newest version!
/*
 * PS3 Media Server, for streaming any medias to your PS3.
 * Copyright (C) 2008  A.Brochard
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; version 2
 * of the License only.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package net.pms.io;

import java.io.File;
import java.util.Arrays;

import net.pms.configuration.PmsConfiguration;
import net.pms.configuration.RendererConfiguration;
import net.pms.dlna.DLNAMediaAudio;
import net.pms.dlna.DLNAMediaSubtitle;
import net.pms.dlna.IPushOutput;

public class OutputParams {
	public File outputFile;
	public File workDir;
	public double minFileSize;
	public double minBufferSize;
	public double maxBufferSize;
	public double timeseek;
	public double timeend;
	public int fromFrame;
	public int toFrame;
	public int waitbeforestart;
	public PipeProcess input_pipes[] = new PipeProcess[2];
	public PipeProcess output_pipes[] = new PipeProcess[2];
	public DLNAMediaAudio aid;
	public DLNAMediaSubtitle sid;
	public int secondread_minsize;
	public boolean noexitcheck;
	public boolean log;
	public boolean lossyaudio;
	public boolean losslessaudio;
	public boolean no_videoencode;
	public String forceFps;
	public String forceType;
	public RendererConfiguration mediaRenderer;
	public boolean hidebuffer;
	public byte header[];
	public IPushOutput stdin;
	public boolean avidemux;
	public boolean shift_scr;

	public OutputParams(PmsConfiguration configuration) {
		if (configuration != null) {
			waitbeforestart = configuration.getVideoTranscodeStartDelay() * 1000;
		} else {
			waitbeforestart = 6000;
		}
		fromFrame = -1;
		toFrame = -1;
		secondread_minsize = 1000000;
		if (configuration != null) {
			minFileSize = configuration.getMinStreamBuffer();
			minBufferSize = configuration.getMinMemoryBufferSize();
			maxBufferSize = configuration.getMaxMemoryBufferSize();
		}
		if (maxBufferSize < 100) {
			maxBufferSize = 100;
		}
		timeseek = 0;
		outputFile = null;
	}

	/**
	 * Set some values to allow fast streaming start of transcoded videos
	 */
	public void manageFastStart() {
		if (mediaRenderer != null && mediaRenderer.isTranscodeFastStart()) {
			waitbeforestart = 0; // no delay when the transcode is starting
			minBufferSize = 1; // 1Mb of minimum buffer before sending the file
		}
	}

	@Override
	public String toString() {
		return "OutputParams [aid=" + aid + ", avidemux=" + avidemux + ", forceFps=" + forceFps + ", forceType="
			+ forceType + ", fromFrame=" + fromFrame + ", header=" + Arrays.toString(header) + ", hidebuffer="
			+ hidebuffer + ", input_pipes=" + Arrays.toString(input_pipes) + ", log=" + log + ", losslessaudio="
			+ losslessaudio + ", lossyaudio=" + lossyaudio + ", maxBufferSize=" + maxBufferSize
			+ ", mediaRenderer=" + mediaRenderer + ", minBufferSize=" + minBufferSize + ", minFileSize="
			+ minFileSize + ", no_videoencode=" + no_videoencode + ", noexitcheck=" + noexitcheck
			+ ", outputFile=" + outputFile + ", output_pipes=" + Arrays.toString(output_pipes)
			+ ", secondread_minsize=" + secondread_minsize + ", shift_scr=" + shift_scr + ", sid=" + sid
			+ ", stdin=" + stdin + ", timeend=" + timeend + ", timeseek=" + timeseek + ", toFrame=" + toFrame
			+ ", waitbeforestart=" + waitbeforestart + ", workDir=" + workDir + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy