]> git.sesse.net Git - vlc/blobdiff - bindings/java/samples/client/src/main/java/MultipleVideosSample.java
bindings: remove java, phonon and python-ctypes. They moved to a dedicated git.
[vlc] / bindings / java / samples / client / src / main / java / MultipleVideosSample.java
diff --git a/bindings/java/samples/client/src/main/java/MultipleVideosSample.java b/bindings/java/samples/client/src/main/java/MultipleVideosSample.java
deleted file mode 100644 (file)
index 1853da8..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-import java.awt.Canvas;
-import java.awt.Color;
-import java.awt.Frame;
-import java.awt.event.WindowAdapter;
-import java.awt.event.WindowEvent;
-
-import javax.swing.JPanel;
-
-import org.videolan.jvlc.JVLC;
-
-/*****************************************************************************
- * MultipleVideosSample.java: VLC Java Bindings
- *****************************************************************************
- * Copyright (C) 1998-2008 the VideoLAN team
- *
- * Authors: Filippo Carone <filippo@carone.org>
- *
- *
- * $Id $
- *
- * 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; either version 2 of the License, or
- * (at your option) any later version.
- *
- * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-public class MultipleVideosSample
-{
-
-    private static int videosNumber = 6;
-    private static String filename ="/home/carone/a.avi";
-    
-    public static void main(String[] args) throws Exception
-    {
-        Frame frame = new java.awt.Frame();
-        frame.setBounds(0, 0, 600, 700);
-        JPanel jvcc = new JPanel();
-        Canvas[] videoCanvasesArray = new Canvas[videosNumber];
-        frame.add(jvcc);
-        
-        if (args.length > 0)
-        {
-            filename = args[0];
-        }
-        
-        for (int i = 0; i < videosNumber; i++)
-        {
-            Canvas jvlcCanvas = new Canvas();
-            videoCanvasesArray[i] = jvlcCanvas;
-            jvlcCanvas.setSize(200, 200);
-            jvlcCanvas.setBackground(new Color(0x0));
-            jvcc.add(jvlcCanvas);
-        }
-        
-        frame.addWindowListener(new WindowAdapter()
-        {
-
-            @Override
-            public void windowClosing(WindowEvent ev)
-            {
-                System.exit(0);
-            }
-        });
-        
-        frame.setVisible(true);
-        JVLC[] jvlcArray = new JVLC[videosNumber];
-        for (int i = 0; i < videosNumber; i++)
-        {
-            JVLC jvlc = new JVLC();
-            jvlcArray[i] = jvlc;
-            jvlc.setVideoOutput(videoCanvasesArray[i]);
-        }
-        
-        for (int i = 0; i < videosNumber; i++)
-        {
-            jvlcArray[i].play(filename);
-            jvlcArray[i].setVideoOutput(videoCanvasesArray[i]);
-            Thread.sleep(500);
-        }
-    }
-    
-}