Illuvatar hat gesagt.:
public class Video extends JFrame
{
public static void main (String[] args)
{
new Video();
}
public Video()
{
setBounds (300, 300, 400, 400);
setLayout (new BorderLayout);
JMFPlayers.playVideo (new File ([Pfad zur Datei]), getContentPane(), BorderLayout.CENTER, false);
setVisible (true);
}
}
F:\java>javac Video.java
Video.java:14: '(' or '[' expected
setLayout (new BorderLayout);
^
Video.java:14: ')' expected
setLayout (new BorderLayout);
^
2 errors
F:\java>javac Video.java
Video.java:9: cannot resolve symbol
symbol : class JFrame
location: class Video
public class Video extends JFrame
^
Video.java:17: cannot resolve symbol
symbol : method setBounds (int,int,int,int)
location: class Video
setBounds (300, 300, 400, 400);
^
Video.java:19: cannot resolve symbol
symbol : method setLayout (java.awt.BorderLayout)
location: class Video
setLayout (new BorderLayout());
^
Video.java:21: cannot resolve symbol
symbol : method getContentPane ()
location: class Video
JMFPlayers.playVideo (new File ("basejumping_small.avi"), getContentPane(),
BorderLayout.CENTER, false);
^
Video.java:23: cannot resolve symbol
symbol : method setVisible (boolean)
location: class Video
setVisible (true);
^
5 errors
Keine Ahnung ob's für einen Statusbalken schon eine fertige Komponente gibt, aber vielleicht schau dir mal diesen Link hier an: http://www.perlscripten.de/modules.php?name=News&file=article&sid=185 (da sollte ein solcher Statusbalken implementiert werden). Und nun einfach den Statusbalken in einem festgelegten Intervall proportional zur Zeit des Films aktualisieren.nauti hat gesagt.:ahja, wie kann ich zu dem Video nun noch so einen Balken dazumachen, der anzeigt, wie weit das Video schon abgespielt ist?