/* * Copyright (c) 2007, 2008 Wayne Meissner * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.gstreamer.example; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import javax.swing.JDesktopPane; import javax.swing.JFrame; import javax.swing.JInternalFrame; import javax.swing.SwingUtilities; import org.gstreamer.Gst; import org.gstreamer.swing.VideoPlayer; /** * */ public class SwingMultiPlayer { /** Creates a new instance of SwingPlayer */ public SwingMultiPlayer() { } public static void main(String[] args) { //System.setProperty("sun.java2d.opengl", "True"); // Quartz is abysmally slow at scaling video for some reason, so turn it off. System.setProperty("apple.awt.graphics.UseQuartz", "false"); args = Gst.init("Swing Player", args); if (args.length < 1) { System.err.println("Usage: SwingPlayer <filename>"); System.exit(1); } final File[] files = new File[args.length]; for (int i = 0; i < args.length; ++i) { files[i] = new File(args[i]); } SwingUtilities.invokeLater(new Runnable() { public void run() { JFrame window = new JFrame("Swing Video Player"); JDesktopPane panel = new JDesktopPane(); window.add(panel); for (int i = files.length - 1; i >= 0; --i) { File file = files[i]; JInternalFrame frame = new JInternalFrame(file.getName()); frame.setResizable(true); frame.setClosable(true); frame.setIconifiable(true); frame.setMaximizable(true); frame.setLocation(i * 100, i * 100); final VideoPlayer player = new VideoPlayer(file); player.setPreferredSize(new Dimension(640, 480)); player.setControlsVisible(true); frame.add(player, BorderLayout.CENTER); frame.pack(); panel.add(frame); frame.setVisible(true); javax.swing.Timer timer = new javax.swing.Timer(5000 * i, new ActionListener() { public void actionPerformed(ActionEvent evt) { player.getMediaPlayer().play(); } }); timer.setRepeats(false); timer.start(); } window.setPreferredSize(new Dimension(1024, 768)); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.pack(); window.setVisible(true); } }); } }