/* * 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.encoders; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.Font; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.swing.JComponent; import javax.swing.JTextField; import com.jgoodies.forms.builder.PanelBuilder; import com.jgoodies.forms.factories.Borders; import com.jgoodies.forms.layout.CellConstraints; import com.jgoodies.forms.layout.FormLayout; import net.pms.configuration.PmsConfiguration; import net.pms.configuration.RendererConfiguration; import net.pms.dlna.DLNAMediaInfo; import net.pms.dlna.DLNAResource; import net.pms.formats.Format; import net.pms.io.OutputParams; import net.pms.io.ProcessWrapper; import net.pms.io.ProcessWrapperImpl; import net.pms.Messages; import net.pms.PMS; import org.apache.commons.lang.StringUtils; public class FFMpegDVRMSRemux extends Player { private JTextField altffpath; public static final String ID = "ffmpegdvrmsremux"; @Override public int purpose() { return MISC_PLAYER; } @Override public String id() { return ID; } @Override public boolean isTimeSeekable() { return true; } @Override public boolean avisynth() { return false; } public FFMpegDVRMSRemux() { } @Override public String name() { return "FFmpeg DVR-MS Remux"; } @Override public int type() { return Format.VIDEO; } protected String[] getDefaultArgs() { return new String[]{"-f", "vob", "-copyts", "-vcodec", "copy", "-acodec", "copy"}; } @Override public String[] args() { return getDefaultArgs(); } @Override public String mimeType() { return "video/mpeg"; } @Override public String executable() { return PMS.getConfiguration().getFfmpegPath(); } @Override public ProcessWrapper launchTranscode( String fileName, DLNAResource dlna, DLNAMediaInfo media, OutputParams params) throws IOException { return getFFMpegTranscode(fileName, dlna, media, params); } protected ProcessWrapperImpl getFFMpegTranscode( String fileName, DLNAResource dlna, DLNAMediaInfo media, OutputParams params) throws IOException { PmsConfiguration configuration = PMS.getConfiguration(); String ffmpegAlternativePath = configuration.getFfmpegAlternativePath(); List cmdList = new ArrayList(); if (ffmpegAlternativePath != null && ffmpegAlternativePath.length() > 0) { cmdList.add(ffmpegAlternativePath); } else { cmdList.add(executable()); } if (params.timeseek > 0) { cmdList.add("-ss"); cmdList.add("" + params.timeseek); } cmdList.add("-i"); cmdList.add(fileName); // change this to -metadata title=dummy if this can be made to work with an official ffmpeg build cmdList.add("-title"); cmdList.add("dummy"); for (String arg : args()) { cmdList.add(arg); } String[] ffmpegSettings = StringUtils.split(configuration.getFfmpegSettings()); if (ffmpegSettings != null) { for (String option : ffmpegSettings) { cmdList.add(option); } } cmdList.add("pipe:"); String[] cmdArray = new String[cmdList.size()]; cmdList.toArray(cmdArray); cmdArray = finalizeTranscoderArgs( this, fileName, dlna, media, params, cmdArray ); ProcessWrapperImpl pw = new ProcessWrapperImpl(cmdArray, params); pw.runInNewThread(); return pw; } @Override public JComponent config() { FormLayout layout = new FormLayout( "left:pref, 3dlu, p, 3dlu, 0:grow", "p, 3dlu, p, 3dlu, 0:grow"); PanelBuilder builder = new PanelBuilder(layout); builder.setBorder(Borders.EMPTY_BORDER); builder.setOpaque(false); CellConstraints cc = new CellConstraints(); JComponent cmp = builder.addSeparator(Messages.getString("FFMpegDVRMSRemux.1"), cc.xyw(1, 1, 5)); cmp = (JComponent) cmp.getComponent(0); cmp.setFont(cmp.getFont().deriveFont(Font.BOLD)); builder.addLabel(Messages.getString("FFMpegDVRMSRemux.0"), cc.xy(1, 3)); altffpath = new JTextField(PMS.getConfiguration().getFfmpegAlternativePath()); altffpath.addKeyListener(new KeyListener() { @Override public void keyPressed(KeyEvent e) { } @Override public void keyTyped(KeyEvent e) { } @Override public void keyReleased(KeyEvent e) { PMS.getConfiguration().setFfmpegAlternativePath(altffpath.getText()); } }); builder.add(altffpath, cc.xyw(3, 3, 3)); return builder.getPanel(); } @Override public boolean isPlayerCompatible(RendererConfiguration mediaRenderer) { return mediaRenderer.isTranscodeToMPEGPSAC3(); } }