Player roda no netbeans mas no java não

To rodando uma aplicaçãozinha no netbeans q exibe um vídeo, no netbeans apesar de gerar algumas execeções ele roda, mas quando eu compilo e tento rodar o jar ele n exibe e da aquele probleminha chato: unable to handle format: mpg… etc…
Código:

import java.awt.*;
import java.awt.event.*;
import javax.media.*;
import javax.media.protocol.*;
import javax.media.control.*;
import java.io.*;

public class PlayerOfMedia extends Frame implements ActionListener,
        ControllerListener {

    MediaLocator locator;
    String filename;
    Player player;
    Dialog selectionDialog;
    Button cancel, open, choose;
    TextField mediaName;
    MenuBar bar;
    Menu fileMenu;
    Dialog errorDialog;
    Label errorLabel;
    Button ok;
    Component controlComponent;
    Component visualComponent;
    Component progressBar;
    Dimension controlSize;
    Dimension visualSize;
    int menuHeight = 50;
    String lastDirectory = null;
    protected static final int VISUAL = 1;
    protected static final int PROGRESS = 2;

    PlayerOfMedia() {
        this("Player of Media");
    }

    PlayerOfMedia(String name) {

        super(name);
        ///////////////////////////////////////////////////////////
        // Setup the menu system: a "File" menu with Open and Quit.
        ///////////////////////////////////////////////////////////
        bar = new MenuBar();
        fileMenu = new Menu("File");
        MenuItem openMI = new MenuItem("Open...", new MenuShortcut(
                KeyEvent.VK_O));
        openMI.setActionCommand("OPEN");
        openMI.addActionListener(this);
        fileMenu.add(openMI);
        MenuItem quitMI = new MenuItem("Quit", new MenuShortcut(KeyEvent.VK_Q));
        quitMI.addActionListener(this);
        quitMI.setActionCommand("QUIT");
        fileMenu.add(quitMI);
        bar.add(fileMenu);
        setMenuBar(bar);

        ///////////////////////////////////////////////////////
        // Layout the frame, its position on screen, and ensure
        // window closes are dealt with properly, including
        // relinquishing the resources of any Player.
        ///////////////////////////////////////////////////////
        setLayout(new BorderLayout());
        setLocation(100, 100);
        addWindowListener(new WindowAdapter() {

            public void windowClosing(WindowEvent e) {
                if (player != null) {
                    player.stop();
                    player.close();
                }
                System.exit(0);
            }
        });

        
        Manager.setHint(Manager.PLUGIN_PLAYER, new Boolean(true));
    }

    /***************************************************************************
     * React to menu selections (quit or open) or one of the the buttons on the
     * dialog boxes.
     **************************************************************************/
    public void actionPerformed(ActionEvent e) {

        if (e.getSource() instanceof MenuItem) {
            //////////////////////////////////////////////////
            // Quit and free up any player acquired resources.
            //////////////////////////////////////////////////
            if (e.getActionCommand().equalsIgnoreCase("QUIT")) {
                if (player != null) {
                    player.stop();
                    player.close();
                }
                System.exit(0);
            } /////////////////////////////////////////////////////////
            // User to open/play media. Show the selection dialog box.
            /////////////////////////////////////////////////////////
            else if (e.getActionCommand().equalsIgnoreCase("OPEN")) {
                //createAPlayer("file:///home/fernando/bailey.mpg");
                FileDialog escolha = new FileDialog(this, "Escolha o vídeo", FileDialog.LOAD);
                escolha.setVisible(true);
                filename = "file://" + escolha.getDirectory() + escolha.getFile();
                createAPlayer(filename);
                System.out.println("PASSEI POR AQUI SEM ORDEM !!!!");
            }
        } //////////////////////
        // One of the Buttons.
        //////////////////////
        else {
            
            if (e.getSource() == choose) {
                FileDialog escolha = new FileDialog(this, "Escolha o vídeo", FileDialog.LOAD);
                escolha.setVisible(true);
                System.out.println("PASSEI AQUI SEM ORDEM !!!!!!!");
                filename = "file://" + escolha.getDirectory() + escolha.getFile();

                createAPlayer(filename);

            } ///////////////////////////////////////////////
            // User chooses to cancel opening of new media.
            ///////////////////////////////////////////////
            else if (e.getSource() == cancel) {
                selectionDialog.hide();
            } ///////////////////////////////////////////////////////
            // User has selected the name of the media. Attempt to
            // create a Player.
            ///////////////////////////////////////////////////////
            else if (e.getSource() == open) {
                selectionDialog.hide();
                createAPlayer(mediaName.getText());
            } ////////////////////////////////////////////
            // User has seen error message. Now hide it.
            ////////////////////////////////////////////
            else if (e.getSource() == ok) {
                errorDialog.hide();
            }
        }
    }

    /***************************************************************************
     * Attempt to create a Player for the media who's name is passed the the
     * method. If successful the object will listen to the new Player and start
     * it towards Realized.
     **************************************************************************/
    protected void createAPlayer(String nameOfMedia) {

        ////////////////////////////////////////////////////////////
        // If an existing player then stop listening to it and free
        // up its resources.
        ////////////////////////////////////////////////////////////
        if (player != null) {
            System.out.println("Stopping and closing previous player");
            player.removeControllerListener(this);
            player.stop();
            player.close();
        }

        ///////////////////////////////////////////////////////////
        // Use Manager class to create Player from a MediaLocator.
        // If exceptions are thrown then inform user and recover
        // (go no further).
        //////////////////////////////////////////////////////////
        locator = new MediaLocator(nameOfMedia);
        try {
            System.out.println("Creating player");
            player = Manager.createPlayer(locator);
        } catch (IOException ioe) {
            errorDialog("Can't open " + nameOfMedia);
            return;
        } catch (NoPlayerException npe) {
            errorDialog("No player available for " + nameOfMedia);
            return;
        }
        //////////////////////////////////////////////////////////
        // Player created successfully. Start listening to it and
        // realize it.
        //////////////////////////////////////////////////////////
        player.addControllerListener(this);
        System.out.println("Attempting to realize player");
        player.realize();
    }

    /***************************************************************************
     * Popup a dialog box informing the user of some error. The passed argument
     * isthe text of the message.
     **************************************************************************/
    protected void errorDialog(String errorMessage) {

        errorLabel.setText(errorMessage);
        errorDialog.pack();
        errorDialog.setVisible(true);
    }

    /***************************************************************************
     * Resize the Frame (window) due to the addition or removal of Components.
     **************************************************************************/
    protected void resize(int mode) {
        //////////////////////////////////////////
        // Player's display and controls in frame.
        //////////////////////////////////////////
        if (mode == VISUAL) {
            int maxWidth = (int) Math.max(controlSize.width, visualSize.width);
            setSize(maxWidth, controlSize.height + visualSize.height + menuHeight);
        } ////////////////////////////////
        // Progress bar (only) in frame.
        ////////////////////////////////
        else if (mode == PROGRESS) {
            Dimension progressSize = progressBar.getPreferredSize();
            setSize(progressSize.width, progressSize.height + menuHeight);
        }
        validate();
    }

    /***************************************************************************
     * React to events from the player so as to drive the presentation or catch
     * any exceptions.
     **************************************************************************/
    public synchronized void controllerUpdate(ControllerEvent e) {

        ///////////////////////////////////////
        // Events from a "dead" player. Ignore.
        ///////////////////////////////////////
        if (player == null) {
            return;
        }

        ////////////////////////////////////////////////////////////
        // Player has reached realized state. Need to tidy up any
        // download or visual components from previous player. Then
        // obtain visual and control components for the player,add
        // them to the screen and resize window appropriately.
        ////////////////////////////////////////////////////////////
        if (e instanceof RealizeCompleteEvent) {
            ////////////////////////////////////////////////////
            // Remove any inappropriate Components from display.
            ////////////////////////////////////////////////////
            if (progressBar != null) {
                remove(progressBar);
                progressBar = null;
            }
            if (controlComponent != null) {
                remove(controlComponent);
                validate();
            }
            if (visualComponent != null) {
                remove(visualComponent);
                validate();
            }
            ///////////////////////////////////////////////////////
            // Add control and visual components for new player to
            // display.
            //////////////////////////////////////////////////////
            controlComponent = player.getControlPanelComponent();
            if (controlComponent != null) {
                controlSize = controlComponent.getPreferredSize();
                add(controlComponent, "Center");
            } else {
                controlSize = new Dimension(0, 0);
            }
            visualComponent = player.getVisualComponent();
            if (visualComponent != null) {
                visualSize = visualComponent.getPreferredSize();
                add(visualComponent, "North");
            } else {
                visualSize = new Dimension(0, 0);
            }
            //////////////////////////////////////////////////////////
            // Resize frame for new components and move to prefetched.
            //////////////////////////////////////////////////////////
            resize(VISUAL);
            System.out.println("Player is now pre-fetching");
            player.prefetch();
        } ////////////////////////////////////////////////////////////
        // Provide user with a progress bar for "lengthy" downloads.
        ////////////////////////////////////////////////////////////
        else if (e instanceof CachingControlEvent && player.getState() <= Player.Realizing && progressBar == null) {
            CachingControlEvent cce = (CachingControlEvent) e;
            progressBar = cce.getCachingControl().getControlComponent();
            if (progressBar != null) {
                add(progressBar, "Center");
                resize(PROGRESS);
            }
        } ////////////////////////////////////////////////
        // Player initialisation complete. Start it up.
        ////////////////////////////////////////////////
        else if (e instanceof PrefetchCompleteEvent) {
            System.out.println("Pre-fetching complete, now starting");
            player.start();
        } ///////////////////////////////////////////////////////
        // Reached end of media. Start over from the beginning.
        ///////////////////////////////////////////////////////
        else if (e instanceof EndOfMediaEvent) {
            player.setMediaTime(new Time(0));
            System.out.println("End of Media - restarting");
            player.start();
        } //////////////////////////////////////////////////////////////
        // Some form of error. Free up all resources associated with
        // the player, don't listen to it anymore, and inform the
        // user.
        //////////////////////////////////////////////////////////////
        else if (e instanceof ControllerErrorEvent) {
            player.removeControllerListener(this);
            player.stop();
            player.close();
            errorDialog("Controller Error, abandoning media");
        }

    }

    public static void main(String[] args) {

        PlayerOfMedia ourPlayer = new PlayerOfMedia();
        ourPlayer.pack();
        ourPlayer.setSize(200, 100);
        ourPlayer.setVisible(true);
    }
}

Ajuda ai galera :frowning:

Consegui rodar o vídeo direto no java, mas só roda no java -jar se tiver como super-usuario, alguem sabe o pq?