• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

ProjectX Fehlermeldung

Hallo zusammen,

ich wollte heute eine MPG-Datei demuxen und habe deshalb per apt der RPM ProjectX auf meinem Rechner mit SuSE10.1 installiert. Leider bekomme ich immer nur Fehlermeldungen :( , Fehlermeldung siehe unten. Java und Java-SDK sind installiert.

Hab auch schon im Forum der Projektes nachgelesen, da gibt es zwar Leute die die gleichen Fehlermeldungen haben, aber die Einträge beziehen sich nur auf MacOS X.

Wer kann mir helfen, da kein Programmierer.


Errorlog:

shell-init: error retrieving current directory: getcwd: cannot access parent directories: Datei oder Verzeichnis nicht gefunden
chdir: error retrieving current directory: getcwd: cannot access parent directories: Datei oder Verzeichnis nicht gefunden

Reading GUI-Switch...
Reading Help Switch...
Reading Config File Switch...
Start with GUI...
Loading last Config or Standard File...
Fehler beim Laden der ini Datei: java.io.FileNotFoundException: /usr/share/projectx/X.ini (No such file or directory)
Loading Language -> 'en'

ProjectX 0.90.4.00/30.03.2006 TEST PROJECT ONLY , User: xxxxxxxx


TERMS AND CONDITIONS:
(1) this is a free Java based demux utility.
(2) It is intended for educational purposes only, as a non-commercial test project.
(3) released under the terms of the GNU GPL.
(4) there is NO WARRANTY of any kind attached to this software.
(5) use it at your own risk and for your own education.

Java Environment
4. Oktober 2006 20:19:51 CEST
java.version 1.5.0_07
java.vendor Sun Microsystems Inc.
java.home /usr/lib/jvm/java-1.5.0-sun-1.5.0_07/jre
java.vm.version 1.5.0_07-b03
java.vm.vendor Sun Microsystems Inc.
java.vm.name Java HotSpot(TM) Client VM
java.class.vers 49.0
java.class.path ProjectX.jar
os.name Linux
os.arch i386
os.version 2.6.16.21-0.13-default
ini.file /usr/share/projectx/X.ini
ext.disk.access disabled or library not found
user.language en
user.name xxxxxxx
user.home /home/xxxxxxx

quick CL usage:
Note: CL doesn't load the GUI components, except with switch [-gui]
<without options> ...starts the GUI
switches and inputfiles can be in any order

options:
[-ini <path + inifile>] ..use that specified iniFile instead of the standard
[-dvx1] ..create a .d2v ProjectFile on demux
[-dvx2] ..create a .d2v ProjectFile + .ac3.wav (RIFF WAVE Header)
[-dvx3] ..create a .d2v ProjectFile + .mpa.wav (RIFF WAVE Header)
[-dvx4] ..create a .d2v ProjectFile + .ac3.wav + mpa.wav (RIFF WAVE Header)
[-out <path>] ..use that specified directory for output
[-name <filename>] ..use that specified filename for output
[-cut <file>] ..use that text based file as cutpoint list
[-chp <file>] ..use that text based file as chapterpoint list
[-id <tokens>] ..use only these (P)IDs, separated by comma ","
[-gui] ..display the GUI using all given CLI options
[-log] ..write the normal logfile
[-saveini] ..save changes made bei CLI in active .ini
[-split <xxx>] ..split output at xxx MB
[-demux, -tom2p, -topva, -tovdr, -tots, -filter] ..action types

Loading Basic Classes...
Reading CLI Switches...
Exception in thread "main" java.lang.Error: can't load com.birosoft.liquid.LiquidLookAndFeel
at javax.swing.UIManager.initializeDefaultLAF(UIManager.java:1176)
at javax.swing.UIManager.initialize(UIManager.java:1257)
at javax.swing.UIManager.maybeInitialize(UIManager.java:1245)
at javax.swing.UIManager.getDefaults(UIManager.java:556)
at javax.swing.filechooser.FileSystemView.getFileSystemView(FileSystemView.java:63)
at javax.swing.JFileChooser.setup(JFileChooser.java:363)
at javax.swing.JFileChooser.<init>(JFileChooser.java:332)
at javax.swing.JFileChooser.<init>(JFileChooser.java:285)
at net.sourceforge.dvb.projectx.gui.X_JFileChooser.<init>(Unknown Source)
at net.sourceforge.dvb.projectx.gui.CommonGui.<init>(Unknown Source)
at net.sourceforge.dvb.projectx.gui.GuiInterfaceImpl.init(Unknown Source)
at net.sourceforge.dvb.projectx.gui.GuiInterfaceImpl.<init>(Unknown Source)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
at java.lang.Class.newInstance0(Class.java:350)
at java.lang.Class.newInstance(Class.java:303)
at net.sourceforge.dvb.projectx.common.GuiInterface.getImplementation(Unknown Source)
at net.sourceforge.dvb.projectx.common.GuiInterface.<init>(Unknown Source)
at net.sourceforge.dvb.projectx.common.Common.prepareGui(Unknown Source)
at net.sourceforge.dvb.projectx.common.Start.main(Unknown Source)
 
scotty310371 schrieb:
Wer kann mir helfen, da kein Programmierer.


Errorlog:

Exception in thread "main" java.lang.Error: can't load com.birosoft.liquid.LiquidLookAndFeel

Sorry for replying in English, my Deutsch ist nicht gut :p

You can find this package here

https://liquidlnf.dev.java.net/

After unpacking read the instructions. You need to know the JAVA path.
The best way is to modify .bashrc in your home directory and include this
lines

export PATH=/opt/jdk1.5.0_09/bin:$PATH
export JAVA_HOME="/opt/jdk1.5.0_09"
export CLASSPATH=.:/opt/jdk1.5.0_09

REPLACE the Java path with approriate one (usually is smth like /usr/lib/java or /usr/lib/jvm/java).

If you dont have .bashrc file create one (e.g. type in console vi .bashrc press enter, then type :wq!

After downloading package you need to unzip files and copy them to corresponding folder (e.g. /usr/lib/java/jre/lib/). Even though the README file suggest you not to copy *.jre files in the /jre/lib/ext folder I could only successfuly run my netbeans after putting 2 *.jre files into this folder.

TIP If you want to have liquid theme enabled for all java programs then copy swing.properties file in /jre/lib folder.

Hope this helps,

Cheers
 
Oben