Jmf instalation problem on Linux

On my slackware 9.0 with java sdk1.4.2_04 I've tried to install jmf 2.1.1e. I've downloaded and executed the bin file. I've added the CLASSPATH=.:/usr/lib/java/JMF-2.1.1e/lib/jmf.jar and the LD_LIBRARY_PATH=/usr/lib/java/JMF-2.1.1e/lib but I can't run applets using appletviewer unless I use appletviewer -J-cp -J$CLASSPATH html_file. The problem is that I still get some errors java.io.IOException: File Not Found
java.io.IOException: File Not Found
Got exception javax.media.NoPlayerException: Error instantiating class: com.sun.media.protocol.file.DataSource : java.io.IOException: File Not Found
java.lang.NullPointerException
        at PlayerApplet.start(PlayerApplet.java:21)
        at sun.applet.AppletPanel.run(AppletPanel.java:377)
        at java.lang.Thread.run(Thread.java:534)This is the applet source code:
import java.applet.*;
import java.awt.*;
import java.net.*;
import javax.media.*;
public class PlayerApplet extends Applet implements ControllerListener {
   Player player = null;
   public void init() {
      setLayout(new BorderLayout());
      String mediaFile = getParameter("FILE");
      try {
         URL mediaURL = new URL(getDocumentBase(), mediaFile);
         player = Manager.createPlayer(mediaURL);
         player.addControllerListener(this);
      catch (Exception e) {
         System.err.println("Got exception "+e);
   public void start() {
      player.start();
   public void stop() {
      player.stop();
      player.deallocate();
   public void destroy() {
      player.close();
   public synchronized void controllerUpdate(ControllerEvent event) {
      if (event instanceof RealizeCompleteEvent) {
         Component comp;
         if ((comp = player.getVisualComponent()) != null)
            add ("Center", comp);
         if ((comp = player.getControlPanelComponent()) != null)
            add ("South", comp);        
         validate();
}Is there is a way to config the environment to use appletviewer without extra options?
Second problem is with http://java.sun.com/products/java-media/jmf/2.1.1/jmfdiagnostics.html
I get
Java 1.1 compilant browser...Maybe
JMF classes..Not FoundI downloaded the jmfdiagnostics I run it using extra options from command line and the applet could't find the native libraries which are in the LD_LIBRARY_PATH
What should I do to get it fixed?
Thanks in advance
Morfi

<p><b>This</b> will give you some help with installing Linux. Although <b>this</b> is for 11g, it can be helpful when installing 10g.</p>
Tom

Similar Messages

  • Oracle9i Install problem on Linux 7.2

    While running runInstall and trying to create a General Purpose DB the install
    of software goes OK. During the DBCA I get an error message at 46%
    ORA-03113: end of file on communications channel
    Any ideas ?

    What is the name of your installer file? have you downloaded the one for
    Linux OS?
    make sure you FTPed the installer file in binary mode.
    "matt sweeney" <[email protected]> wrote in message
    news:3d1c718d$[email protected]..
    Hi,
    I'm having a problem installing weblogic server 700 on a Dell 2500 Redhat7.2 linux box. The problem occurs during the extraction process. If I run
    the program as a regular user the error message is:
    >
    /tmp//fileJa7hab/wls7000_linux.jar bad CRC 250071c7 (should be 019fdd07)
    .100%
    ** Error during extraction, error code = 2.
    If I run the program as root, I get
    [root@med10-apache root]#
    ./weblogic700_linux.bin -mode=console
    Extracting0%..........................................................................
    ..........................100%
    /tmp/fileVe6y1r/jdk131_02/bin/i386/native_threads/java: error whileloading shared libraries: libstdc -libc6.1-1.so.2: cannot open shared
    object file: No such file or directory
    ** Error during execution, error code = 32512.
    Thanks in advance
    Matt

  • J2EE 1.4 beta SDK install problem on Linux RH 7.2 ?

    Hello everybody
    Thank for your reading
    I have installed J2EE SDK 1.4 beta on Linux RH 7.2, my installed J2SE is 1.4.0_01, but the J2EE installer reported that: Exception in the "main" thread: java.lang.io.NoDefClassFound: J2EE.
    I had defined JAVA_HOME. I don't know how to sovle this problem.
    Please help me. thank you
    [email protected]

    Hi, I'm fairly new with Linux.... I've downloaded the self extracting 1.4.0 bin file... how do I istall it now? I'm not sure what command to use for the installation to occur.
    I'm installing Tomcat as well...
    Is there anywhere I can go to see step by step instructions to install these products?
    Thank you in advanced!

  • CF8 install problems on linux server

    Really some basic install questions as it seems this should
    be simple enough, but I am a little confused with the jrun part. I
    am running on a Cent OS 5 server, the install I assume is the
    multi-server. It was installed to the default /opt location and I
    have both the coldfusion and jrun folders. I changed the apache
    connector to work which gave me the all good, but I have the
    following.
    I can hit the admin page
    http://server.domain.com/CFIDE/administrator/index.cfm
    ( no ports ). But when I try to load one of our pages I get;
    [Tue Mar 10 11:21:00 2009] [notice] jrApache[18561: 13457]
    JRun will not accept request. Check JRun web server configuration
    and JRun mappings on JRun server.
    I am still confused if I need to start cf
    (/opt/coldfusion8/bin/coldfusion start), AND start jrun
    (/opt/jrun4/jrun -start cfusion) but things just won't work, and I
    think I need a high level look 1st. Do I need that above jrun, if
    so how to setup, etc. If I run the ./jrun -start cfusion then try
    to run the cf-connectors.sh I get;
    Configuring the web server connector for ColdFusion 8
    (multiserver)
    Running apache connector wizard...
    =======================================
    There was an error while running the connector wizard
    Connector installation was not successful
    =======================================
    So any push in the right direction will help. I can provide
    anything, tried to be as descriptive as I can, but let me know.
    Thanks

    jeffcg2 wrote:
    > I think I am at the point of starting coldfusion but
    linux is not my strong
    > point. So I am wondering where to go now.
    I would guess you have ColdFusion installed, but your web
    server has not
    yet been configured to do something about it. You need to
    configure
    your web server to know that when it gets requests for
    ColdFusion
    resources, such as .cfm, .cfc. and .cfr files, it needs to
    pass the
    request off to the ColdFusion engine, not just serve the
    files to the
    client as a text file.
    You should be able to find the information you need by
    searching for
    information on wsconfig and ColdFusion web server connector.
    These two sections of the documentation are all about this
    topic.
    http://livedocs.adobe.com/coldfusion/8/htmldocs/webservmgmt_5.html#102669
    http://livedocs.adobe.com/coldfusion/8/htmldocs/webservmgmt_6.html#102674

  • Oracle install problem in linux

    hi,
    cannot execute the Export command before running the command ./RUNINSTALL.SH
    Error is
    OraSID#export DISPLAY=ipaddress:0.0
    cannot find the command but i can find the export command in sbin and also i checked echo$DISLPAY and got output as :0.0 and also i can export in root user.

    So if you get a value, don't set DISPLAY manually, it's only necessary if you display
    - on a different host
    - on the same host using a different user than the one you're logged in
    RUNINSTALLER will run for some time before it fires up a GUI so be patient
    Markus

  • Problem installing JMF performance pack for linux

    I'm trying to install the JMF performace pack for linux on redhat 9, and when I run the bin i get...
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x4D3C5B40
    Function=_XtCreateIndirectionTable+0x30
    Library=/usr/X11R6/lib/libXt.so.6
    Current Java thread:
            at sun.awt.motif.MTextAreaPeer.setFont(Native Method)
            at sun.awt.motif.MComponentPeer.initialize(MComponentPeer.java:185)
            at sun.awt.motif.MTextAreaPeer.initialize(MTextAreaPeer.java:58)
            at sun.awt.motif.MComponentPeer.init(MComponentPeer.java:228)
            at sun.awt.motif.MComponentPeer.<init>(MComponentPeer.java:232)
            at sun.awt.motif.MTextAreaPeer.<init>(MTextAreaPeer.java:62)
            at sun.awt.motif.MToolkit.createTextArea(MToolkit.java:197)
            at java.awt.TextArea.addNotify(TextArea.java:276)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Container.addNotify(Container.java:2049)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Window.addNotify(Window.java:418)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Frame.addNotify(Frame.java:482)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at JMFInit.createGUI(JMFInit.java:242)
            at JMFInit.<init>(JMFInit.java:25)
            at JMFInit.main(JMFInit.java:248)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:01 2359587    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/bin/java
    08056000-08059000 rw-p 0000d000 08:01 2359587    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/bin/java
    40000000-40015000 r-xp 00000000 08:01 3063814    /lib/ld-2.3.2.so
    40015000-40016000 rw-p 00015000 08:01 3063814    /lib/ld-2.3.2.so
    40016000-4001e000 r-xp 00000000 08:01 524584     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/native_threads/libhpi.so
    4001e000-4001f000 rw-p 00007000 08:01 524584     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/native_threads/libhpi.so
    4001f000-40020000 r-xp 00000000 08:01 2752541    /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    40020000-40021000 rw-p 00000000 08:01 2752541    /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    40022000-4002d000 r-xp 00000000 08:01 917517     /lib/tls/libpthread-0.34.so
    4002d000-4002e000 rw-p 0000a000 08:01 917517     /lib/tls/libpthread-0.34.so
    40030000-40033000 r-xp 00000000 08:01 3063827    /lib/libdl-2.3.2.so
    40033000-40034000 rw-p 00002000 08:01 3063827    /lib/libdl-2.3.2.so
    40035000-4043b000 r-xp 00000000 08:01 114947     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/client/libjvm.so
    4043b000-40456000 rw-p 00405000 08:01 114947     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/client/libjvm.so
    40469000-4047b000 r-xp 00000000 08:01 3063831    /lib/libnsl-2.3.2.so
    4047b000-4047c000 rw-p 00011000 08:01 3063831    /lib/libnsl-2.3.2.so
    4047e000-4049f000 r-xp 00000000 08:01 917515     /lib/tls/libm-2.3.2.so
    4049f000-404a0000 rw-p 00020000 08:01 917515     /lib/tls/libm-2.3.2.so
    404a0000-404a4000 rw-s 00000000 08:01 2343375    /tmp/hsperfdata_root/16836
    404a4000-404a7000 r--s 00000000 08:01 1163539    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/dnsns.jar
    404ab000-404b6000 r-xp 00000000 08:01 3063837    /lib/libnss_files-2.3.2.so
    404b6000-404b7000 rw-p 0000a000 08:01 3063837    /lib/libnss_files-2.3.2.so
    404b7000-404c7000 r-xp 00000000 08:01 3178829    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libverify.so
    404c7000-404c9000 rw-p 0000f000 08:01 3178829    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libverify.so
    404c9000-404e9000 r-xp 00000000 08:01 3178817    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libjava.so
    404e9000-404eb000 rw-p 0001f000 08:01 3178817    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libjava.so
    404eb000-404ff000 r-xp 00000000 08:01 3178830    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libzip.so
    404ff000-40502000 rw-p 00013000 08:01 3178830    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libzip.so
    40502000-41ead000 r--s 00000000 08:01 1917420    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/rt.jar
    41ef7000-41f0d000 r--s 00000000 08:01 1917421    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/sunrsasign.jar
    41f0d000-41fea000 r--s 00000000 08:01 1917414    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/jsse.jar
    41fea000-41ffb000 r--s 00000000 08:01 1917413    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/jce.jar
    41ffb000-41fff000 r-xp 00000000 08:01 262370     /usr/X11R6/lib/libXtst.so.6.1
    41fff000-42000000 rw-p 00004000 08:01 262370     /usr/X11R6/lib/libXtst.so.6.1
    42000000-42130000 r-xp 00000000 08:01 917511     /lib/tls/libc-2.3.2.so
    42130000-42133000 rw-p 00130000 08:01 917511     /lib/tls/libc-2.3.2.so
    42136000-426d6000 r--s 00000000 08:01 1917351    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/charsets.jar
    4c983000-4cb83000 r--p 00000000 08:01 459007     /usr/lib/locale/locale-archive
    4cd87000-4ce43000 r--s 00000000 08:01 1163541    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/localedata.jar
    4ce43000-4ce50000 r--s 00000000 08:01 1163540    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/ldapsec.jar
    4ce50000-4ce6c000 r--s 00000000 08:01 1163542    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/sunjce_provider.jar
    4ce6c000-4d028000 r--s 00000000 08:01 672131     /opt/JMF-2.1.1e/lib/jmf.jar
    4d028000-4d2f9000 r-xp 00000000 08:01 3178809    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libawt.so
    4d2f9000-4d30f000 rw-p 002d0000 08:01 3178809    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libawt.so
    4d334000-4d387000 r-xp 00000000 08:01 3178824    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libmlib_image.so
    4d387000-4d388000 rw-p 00052000 08:01 3178824    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libmlib_image.so
    4d388000-4d38e000 r--s 00000000 08:01 819398     /usr/lib/gconv/gconv-modules.cache
    4d393000-4d39a000 r-xp 00000000 08:01 262360     /usr/X11R6/lib/libXp.so.6.2
    4d39a000-4d39b000 rw-p 00006000 08:01 262360     /usr/X11R6/lib/libXp.so.6.2
    4d39b000-4d3e9000 r-xp 00000000 08:01 262404     /usr/X11R6/lib/libXt.so.6.0
    4d3e9000-4d3ed000 rw-p 0004d000 08:01 262404     /usr/X11R6/lib/libXt.so.6.0
    4d3ed000-4d3fa000 r-xp 00000000 08:01 262346     /usr/X11R6/lib/libXext.so.6.4
    4d3fa000-4d3fb000 rw-p 0000c000 08:01 262346     /usr/X11R6/lib/libXext.so.6.4
    4d3fb000-4d4d7000 r-xp 00000000 08:01 262336     /usr/X11R6/lib/libX11.so.6.2
    4d4d7000-4d4da000 rw-p 000db000 08:01 262336     /usr/X11R6/lib/libX11.so.6.2
    4d4da000-4d4e2000 r-xp 00000000 08:01 262334     /usr/X11R6/lib/libSM.so.6.0
    4d4e2000-4d4e3000 rw-p 00007000 08:01 262334     /usr/X11R6/lib/libSM.so.6.0
    4d4e3000-4d4f7000 r-xp 00000000 08:01 262383     /usr/X11R6/lib/libICE.so.6.3
    4d4f7000-4d4f8000 rw-p 00013000 08:01 262383     /usr/X11R6/lib/libICE.so.6.3
    4d4fa000-4d5b4000 r-xp 00000000 08:01 3178813    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libfontmanager.so
    4d5b4000-4d5cf000 rw-p 000b9000 08:01 3178813    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libfontmanager.so
    4d5d0000-4d5d9000 r-xp 00000000 08:01 2752544    /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    4d5d9000-4d5da000 rw-p 00008000 08:01 2752544    /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    4d5db000-4d5e3000 r-xp 00000000 08:01 262344     /usr/X11R6/lib/libXcursor.so.1.0
    4d5e3000-4d5e4000 rw-p 00007000 08:01 262344     /usr/X11R6/lib/libXcursor.so.1.0
    4d5e4000-4d5eb000 r-xp 00000000 08:01 262366     /usr/X11R6/lib/libXrender.so.1.2.2
    4d5eb000-4d5ec000 rw-p 00006000 08:01 262366     /usr/X11R6/lib/libXrender.so.1.2.2
    4d5ec000-4d608000 r-xp 00000000 08:01 2752538    /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    4d608000-4d60a000 rw-p 0001c000 08:01 2752538    /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 203K [0x44780000, 0x44820000, 0x44c60000)
      eden space 512K,  28% used [0x44780000, 0x447a5158, 0x44800000)
      from space 64K,  86% used [0x44810000, 0x4481dda0, 0x44820000)
      to   space 64K,   0% used [0x44800000, 0x44800000, 0x44810000)
    tenured generation   total 1408K, used 490K [0x44c60000, 0x44dc0000, 0x48780000)
       the space 1408K,  34% used [0x44c60000, 0x44cdab80, 0x44cdac00, 0x44dc0000)
    compacting perm gen  total 4096K, used 2605K [0x48780000, 0x48b80000, 0x4c780000)
       the space 4096K,  63% used [0x48780000, 0x48a0b5f0, 0x48a0b600, 0x48b80000)
    Local Time = Thu Apr 21 09:38:17 2005
    Elapsed Time = 1
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid16836.log.
    # Please refer to the file for further information.
    ./jmf-2_1_1e-linux-i586.bin: line 305: 16836 Aborted                 JMF-2.1.1e/bin/jmfinit /tmp `pwd`/JMF-2.1.1e/doc/jmf-policy $allowCapture $allowSave
    Done.Looks like it could be something to do with a font?
    any ideas?
    thanks

    Please tell me how to solve this problem!
    Thanks!

  • Problems to install Oracle9i on Linux RH 7.1

    Error message appeared during installation process.
    "Error in involing target install of makefile
    /disk01/app/oracle/products/9.0.1/plsql/lib/ins_plsql.mk"
    Does anybody know what to do?

    Try the instruction on this URL
    http://www.e-gineer.com/instructions/install-oracle9i-on-
    linux.phtml
    The problem may be coming from the binutils verson imcompatible.

  • SOLUTION TO LINUX INSTALL PROBLEMS

    Browsing this forum, I noticed people are having trouble
    installing Oracle on Linux. I saw this posted on Metalink, so I
    am cutting and pasting:
    Make sure you are running no earlier than jre 116 v5.
    Also install from kde rather than gnome unless you have
    installed the
    gnome patch and finally run the runIns.sh in the install/linux
    directory on the cd. Try it... Let's reach a consensus on what the best way to
    install Oracle is...
    gabriel
    null

    Gabriel Gonzalez (guest) wrote:
    : Try it... Let's reach a consensus on what the best way to
    : install Oracle is...
    : gabriel
    ...and let me know so I can incorporate any useful information
    into my Oracle on Linux HOWTO!
    It's at public.logica.com/~darlings/oracle/, BTW.
    --> Steve
    null

  • JMF on PDA with linux famliar

    Hello,I am disperate
    When I tried to install the jmf on my pda with linux familiar I have got this error message:
    Quando tento di installare le jmf su palamre con linux familiar ricevo il seguente errore
    Unpacking...
    Extracting...
    ./install.sfx.2146: 1: Syntax error: "(" unexpected
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /j2re1.3.1/lib/armv4l
    /libawt.so: libXm.so.2: cannot open shared object file: No such file or director
    y
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1382)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1298)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:53)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:41)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:356)
    Done.
    Why?
    thanks

    I have solved the previous problem but now when I tri to reproduce an audio file I haven't listened any!
    What is the problem?
    Pleasure help me!!!!!!very very urgent

  • Jmf video encoding vista/linux

    Hello.
    I tried to run AviCreator example in this topic: [http://forum.java.sun.com/thread.jspa?forumID=28&threadID=514583|http://forum.java.sun.com/thread.jspa?forumID=28&threadID=514583]
    I modified this example to be able print all processor's supported formats:
    p.setContentDescriptor(new ContentDescriptor(FileTypeDescriptor.MSVIDEO));
    // Query for the processor for supported formats.
    // Then set it on the processor.
    TrackControl tcs[] = p.getTrackControls();
    Format f[] = tcs[0].getSupportedFormats();
    // My modification:
    for(int i=0; i<f.lenght; i++) {
         System.out.println(i + " " + f);
    If i run it on windows I get following output:0 RGB, 16-bit, Masks=31744:992:31, PixelStride=-1, LineStride=-1, Flipped, LittleEndian
    1 RGB, 24-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    2 RGB, 32-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    3 YUV Video Format: Size = null MaxDataLength = -1 DataType = class [B yuvType = 2 StrideY = -1 StrideUV = -1 OffsetY = -1 OffsetU = -1 OffsetV = -1
    4 IYUV
    5 CVID
    6 XVID
    7 YV12
    8 MJPG 28 extra bytes
    9 H263
    {code}
    But if I run it on linux, I get this output:
    0 RGB, 16-bit, Masks=31744:992:31, PixelStride=-1, LineStride=-1, Flipped, LittleEndian
    1 RGB, 24-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    2 RGB, 32-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    3 YUV Video Format: Size = null MaxDataLength = -1 DataType = class [B yuvType = 2 StrideY = -1 StrideUV = -1 OffsetY = -1 OffsetU = -1 OffsetV = -1
    4 MJPG 28 extra bytes
    5 H263
    6 RGB, 16-bit, Masks=31744:992:31, PixelStride=-1, LineStride=-1, Flipped, LittleEndian
    7 RGB, 24-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    8 RGB, 32-bit, Masks=3:2:1, PixelStride=-1, LineStride=-1, Flipped
    9 YUV Video Format: Size = null MaxDataLength = -1 DataType = class [B yuvType = 2 StrideY = -1 StrideUV = -1 OffsetY = -1 OffsetU = -1 OffsetV = -1I mainly interested in CVID and XVID on linux and as I read here: [http://java.sun.com/products/java-media/jmf/2.1.1/formats.html|http://java.sun.com/products/java-media/jmf/2.1.1/formats.html]
    there is no support for this format's encoding on linux.
    Could you give me advise how to provide CVID and DIVX encoding on linux? Is there any plugin for JMF or perhaps another and better framework for java?
    Thanks a lot Standa

    compbry, the fundamental problem is that Vista is 3 years old and the latest releast of JMF is like, 5 or 6 years old. So, there's nothing in the realm of "Vista compatibility" for JMF.
    That said, to my knowledge no one has ever gotten JMF to capture video from inside an applet in Vista, JMF installed on the computer or not.
    However, if you have JMF installed, you can easily run a JMF web-start app that will work just fine in Vista, that would allow you to do whatever it is you're needing to do.
    But if you're going in a different direction, I'd suggest looking at the Adobe Flex API. It's free and from what I've researched about it, it makes webcam and microphone capture damn easy. If you've got a decent web server that will allow you to do ColdFusion or (can't remember the term for it, but you can write Java code that will run on-demand on the web host that your Flex application can talk to to do stuff like upload the images, etc...), it should be a relatively easy and short as far as LOC is concerned, minus of course the learning curve associated with learning something new (which is why I've only researched it, but I would've played with it too had I had a "decent webserver" ;-)

  • Install problems

    I am running into a strange issue trying to install Data Integrator the install is saying that I am missing files that are there and are in the path any ideas? This is Red Hat Enterprise Server 5.2 btw, and ODI 10.1.3.2.0. The exception thrown is stated below:
    [oracle@localhost linux_i386]$ ./setup.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.6143/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    [oracle@localhost linux_i386]$ which libc.so.6
    /lib/libc.so.6
    [oracle@localhost linux_i386]$ which libpthread.so.0
    /lib/libpthread.so.0
    [oracle@localhost linux_i386]$ which librt.so.1
    /lib/librt.so.1
    Edited by: user5349975 on Oct 17, 2008 10:10 AM

    Apparently this problem happens with a lot of applications in linux. The fix here is to run the following commands:
    copy setup.bin setup.bin.bak
    cat setup.bin.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > setup.bin
    and then run the setup file. The trick for me was to do all of the second command exactly right. I saw the same solution in other places that attempted to break it up more and they didn't seem to work. Don't even bother to try to do this with vi as it seems to corrupt the file.

  • Can't install Oracle_cal on linux EL5

    Hey everyone, I am having some trouble installing oracle cal on linux EL5. I keep getting the following error when trying to invoke the installer. Does anyone know a solution?:
    ./gui_install.sh
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.11456/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory

    It's probably not supported on RHEL5/Centos5/etc., but...
    You can get the installer to function using the following steps:
    - extract the cal_linux_*.tar.gz, and cd into the OracleCalendar_inst directory
    In there is the actual installer, cal_linux.
    - the cal_linux is shell script wrapped around some binary blobs. The installer's
    problem is that Oracle is setting the LD_ASSUME_KERNEL=2.2.5 environment
    variable, which is a mistake on RHEL5. You need to make it not set that variable,
    but you need to do so in a way that the size of the shell script does not change at all,
    and none of the binary blobs are impacted.
    - the approach I took was
    mv cal_linux cal_linux.BAK
    sed -e 's/LD_ASSUME_KERNEL=2.2.5/LD_ASSUME_KERNEL= /g' < cal_linux.BAK > cal_linux
    chmod a+rx cal_linux
    cal_linux -i gui
    Note: you must have exactly 5 spaces in the substitution part of the sed command, because you're replacing 5 characters (2.2.5), and the size of the shell script must not change.
    If you do that, the installer should run (one warning from awk still) and you should be able to install the product.
    Tim

  • How to install PEAR on Linux server

    Hi
    I have PHP installed on one linux server and developers are using it already. I have been given the task to get the oci8 (oracle connectivity) done on this same server. I can not do the reinstall of whole PHP again. During the install of OCI extention I got many errors for missing PEAR files.
    So I went through the PEAR document and found "php go-pear.php" command to install the PEAR package. This command fails with below error.
    download of http://pear.php.net/get/PEAR?uncompress=yes failed: Failed to parse address "" (0)
    The problem is this Linux box does not have direct internet connectivity so I had to download all the required packages as per go-pear.php on my local machine and I am FTPing them to this linux box. I have kept the "PEAR-1.8.1.tar" file in the same directory where go-pear.php file exists but still the above command tries to download it from internet.
    Could you please tell me how can I overcome this problem. Please let me know if there are any RPM's that I can use to install PEAR rather that "php go-pear.php" command.
    Thanks
    Shelly

    Hi CJ.
    It has been more than 4 weeks that I am strugling to get PHP-Oracle work on my system. You are the only hope right now. I have gone through so many articles and white pages that I am totally confused and starting to hate PHP or actually Suse Linux. :-)
    Below are the details of my system.
    more SuSE-release
    SUSE LINUX Enterprise Server 9 (i586)
    VERSION = 9
    PATCHLEVEL = 4
    rpm -qa php* No results
    rpm -qa ph* --No results
    rpm -qa oracle*
    oracle-instantclient-devel-10.2.0.4-1
    oracle-instantclient-basic-10.2.0.4-1
    * which php*
    */usr/bin/php*
    * php -version*
    PHP 4.3.4 (cli) (built: Jan 17 2008 09:55:23)
    Copyright (c) 1997-2003 The PHP Group
    Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies
    This is what I see on my system
    */usr/bin> ls -l |grep php*
    -rwxr-xr-x 1 root root 100308 2008-01-17 05:03 asp2php
    -rwxr-xr-x 1 root root 1392441 2008-01-17 04:55 php
    -rwxr-xr-x 1 root root 684 2008-01-17 04:55 php-config
    -rwxr-xr-x 1 root root 593 2008-01-17 04:55 phpextdist
    -rwxr-xr-x 1 root root 2082 2008-01-17 04:55 phpize
    /usr/bin> whereis php
    php: /usr/bin/php /etc/php.ini /usr/lib/php /usr/include/php /usr/share/php /usr/share/man/man1/php.1.gzI see that PHP is already installed on my system which is version PHP 4.3.4.
    Question.
    1) Do i have to upgrade the PHP version to the latest to get OCI8 configured?
    2) If the answer to the above question is Yes than could you point me to any reference doc?
    3) If the upgrade is not needed, how can I configure PHP to use OCI8 to connect to database?
    Thanks in advance
    Shelly

  • Finding the multiple JRE installed path in Linux OS

    for my requirement on finding the JRE installaiton folder on windows and Linux machines , I can able to get it in windows but I am facing problem in getting the jre installed path from Linux machine. I am using Debian etch OS. Can anyone help me to find the installed path of JRE in Linux machine using a Java program. I need to find the multuiple JRE installed paths, i.e. my java program should find all the JRE installed paths and versions of the same.
    Thanks in advance.
    Edited by: VijayForumScreen on Jul 29, 2008 5:46 AM

    As per the terminal prompt its ok...but i need the java concept to retrieve the versions and installed paths of the all JRE.
    e.g;For current JRE we can get by,
    System.out.println(System.getProperty("java.version"));
    System.out.println(System.getProperty("java.home"));
    Output:
    1.5.0_10
    /usr/lib/jvm/java-1.5.0-sun-1.5.0.10/jre
    If i installed 1.3 and 1.4 also.,
    How can i get installed paths and versions for all three 1.3,1.4 and 1.5 JRE's

  • File problem in linux OS.

    hi,
    I am creating one jar file . In my program, when I click one survey menu in my GUI,it will collect information from remote device and store it in log file located LOG folder. In my case, I put one folder " Cal" and inside it I put myjar.jar file and that log (LOG) folder.
    In Windows, when I click survey menu in GUI, the log information automatically stored in log foder as survey.txt file. And also, i create one show dialog box to show where the log file located.
    my code is,
    String  ss=new String(" HIllo"+"loginfo" );           
                     byte b[]=ss.getBytes ();
                           OutputStream f0=new FileOutputStream               ("LOG/survey.log",true);
                           f0.write(b);
                           f0.flush();                      
                           f0.close ();    the above code is file writing in txt file.
    for display dialog box,
    if(source==Survey)
                    File file = new File("LOG/Survey.log");                      
                    file = file.getAbsoluteFile(); 
                    javax.swing.JOptionPane.showMessageDialog(MainFrame, "The LOG FILE is stored at -- \t \t"+file);
                 }In windows, where can i install that Cal folder (inside it JAR file and LOG folder), and click that jar , all are working fine. The log file stored correctly inLOG folder and dialog box show the located path.
    eg. log file stored at D:/sbk/Cal/LOG/survey.log
    But my problem in linux.
    when i click survey menu, it will defaultly stored in root folder and log folder. Actually i am not creating LOG folder in root folder.
    I am changing file writer as , to store that JAR folder and want to store that log file in home directory.
    if(no_of_ssid!=null){
                    String  ss=new String(""HIllo"+"loginfo\n" );          May
                     byte b[]=ss.getBytes ();
                           OutputStream f0=new FileOutputStream ("/home/Cal/LOG/Survey.log",true);
                           f0.write(b);
                           f0.flush();                      
                           f0.close ();    but, now also that file stored in rot directory.
    what can I do.
    how can I store log file in home/Cal/Log folder in Linux.
    any one help this problem

    Use System get prop user.home?

Maybe you are looking for

  • BAPI/FM to change scheduling agreement's delivery status.

    Hi All, I have to check  "Delivery completed" indicator of scheduling agreement. I tried using BAPI_PO_CHANGE but it returns the message below: "Not possible to process a scheduling agreement using this function" Is there any other BAPI or FM to chan

  • I can't get my Ical birthday list to upload to a new calendar in Iphoto.

    Under settings it ives me the option box of the birthday list I want.  Iv'e checked it and reimported and I get nothing.  Is it a Ical sharing issue or setting that I need to change?

  • Creating Lines in cs4

    I'm creating a criminal line out background . I'm using the line tool to creat the lines. I have renamed it in the path tool   created a cliiping mask but when I flatten the image once finished the lines  dissappear. I have also tried creating a new

  • Copying and Converting to DNG

    Using Lightroom 3 beta 2, when importing raw files to both a primary location and a secondary backup location, using "Copy and Convert to DNG". the files are copied to the primary location as DNG, but NOT to the secondary location where they are copi

  • PS crashed... can't open psd file

    Hey, My PS Crashed while working on a project and PS doesn't want to open the file again... I tried a few things like copie&past in an other folder and to rename it but al of these things doesn't work... I tried to open the file with Irfanview but th