]> git.sesse.net Git - vlc/blob - bindings/java/src/main/java/org/videolan/jvlc/internal/LibVlcImpl.java
remove old headers in java bindings
[vlc] / bindings / java / src / main / java / org / videolan / jvlc / internal / LibVlcImpl.java
1 /*****************************************************************************
2  * ${file_name}: VLC Java Bindings
3  *****************************************************************************
4  * Copyright (C) 1998-2007 the VideoLAN team
5  *
6  * Authors: Filippo Carone <filippo@carone.org>
7  *
8  *
9  * $Id $
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 package org.videolan.jvlc.internal;
27
28 import java.awt.Canvas;
29 import java.awt.Component;
30
31 import javax.swing.JFrame;
32 import javax.swing.JPanel;
33
34 import org.videolan.jvlc.internal.LibVlc.LibVlcCallback;
35 import org.videolan.jvlc.internal.LibVlc.LibVlcEventManager;
36 import org.videolan.jvlc.internal.LibVlc.LibVlcInstance;
37 import org.videolan.jvlc.internal.LibVlc.LibVlcMediaDescriptor;
38 import org.videolan.jvlc.internal.LibVlc.LibVlcMediaInstance;
39 import org.videolan.jvlc.internal.LibVlc.libvlc_event_t;
40 import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t;
41
42 import com.sun.jna.Pointer;
43
44
45 public class LibVlcImpl
46 {
47
48     public static boolean done;
49
50     public static void main(String[] args) throws InterruptedException
51     {
52         LibVlc libVlc = LibVlc.INSTANCE;
53         libvlc_exception_t exception = new libvlc_exception_t();
54         libVlc.libvlc_exception_init(exception);
55
56         final Object lock = new Object();
57
58         System.out.println("Starting vlc");
59         LibVlcInstance libvlc_instance_t = libVlc.libvlc_new(0, new String[] {"/usr/local/bin/vlc"}, exception);
60
61         LibVlcMediaDescriptor mediaDescriptor = libVlc
62             .libvlc_media_descriptor_new(libvlc_instance_t, "/home/carone/a.avi", exception);
63
64         LibVlcMediaInstance mediaInstance = libVlc.libvlc_media_instance_new_from_media_descriptor(mediaDescriptor, exception);
65
66         LibVlcEventManager mediaInstanceEventManager = libVlc.libvlc_media_instance_event_manager(mediaInstance, exception);
67
68         LibVlcCallback played = new LibVlcCallback()
69         {
70
71             @Override
72             public void callback(libvlc_event_t libvlc_event_t, Pointer pointer)
73             {
74                 System.out.println("Playing started.");
75             }
76         };
77
78         LibVlcCallback endReached = new LibVlcCallback()
79         {
80
81             @Override
82             public void callback(libvlc_event_t libvlc_event_t, Pointer pointer)
83             {
84                 synchronized (lock)
85                 {
86                     System.out.println("Playing finished.");
87                     LibVlcImpl.done = true;
88                 }
89             }
90         };
91
92         libVlc.libvlc_event_attach(
93             mediaInstanceEventManager,
94             LibVlcEventType.libvlc_MediaInstancePlayed.ordinal(),
95             played,
96             null,
97             exception);
98
99         libVlc.libvlc_event_attach(
100             mediaInstanceEventManager,
101             LibVlcEventType.libvlc_MediaInstanceReachedEnd.ordinal(),
102             endReached,
103             null,
104             exception);
105         
106         JFrame frame = new JFrame("title");
107         frame.setVisible(true);
108         frame.setLocation(100, 100);
109         frame.setSize(500, 500);
110         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
111         
112         JPanel panel = new JPanel();
113         Canvas canvas = new Canvas();
114         canvas.setSize(500, 500);
115         panel.add(canvas);
116         frame.getContentPane().add(panel);
117         frame.pack();
118         
119         long drawable = com.sun.jna.Native.getComponentID(canvas);
120         
121         libVlc.libvlc_video_set_parent(libvlc_instance_t, drawable, exception);
122
123         libVlc.libvlc_media_instance_play(mediaInstance, exception);
124     }
125 }