source: osm/applications/editors/josm/plugins/videomapping/test/videotest.java@ 21584

Last change on this file since 21584 was 21519, checked in by guardian, 15 years ago

followPath and Video

File size: 661 bytes
Line 
1import java.awt.Canvas;
2import java.awt.Dimension;
3
4import javax.swing.JFileChooser;
5import javax.swing.JFrame;
6import javax.swing.JPanel;
7import javax.swing.JSlider;
8import javax.swing.event.ChangeEvent;
9import javax.swing.event.ChangeListener;
10
11import uk.co.caprica.vlcj.player.*;
12
13
14public class videotest {
15
16 /**
17 * @param args
18 */
19 public static void main(String[] args) {
20 JFrame window = new JFrame("video test");
21 window.setSize(new Dimension(600,600));
22 window.setVisible(true);
23 SimpleVideoPlayer sVP = new SimpleVideoPlayer(window);
24 window.add(sVP);
25 window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
26
27 }
28
29}
Note: See TracBrowser for help on using the repository browser.