Problem Playing Audio in Forms 6i On Web

Hi there,
I'm trying to get sound out of a form running over the web under Forms 6i using JDK 1.1.8 and after two solid days of reading documentation, scanning Oracle's support sites and searching the web I've been unable to figure out what I need to do to get sound to work in this environment. The maddening part is that I've been able to do it under Forms 9i and JDeveloper (using Java2) 9i so I know how easy this should be. Unfortunately, 9i is not our corporate standard yet so I am forced to go the 6i route instead for now.
Based on my research I find it impossible to believe that I'm dealing with that complex a problem and that if any of you have managed to figure it out it won't require that much time to pass it on.
Okay, if you are still reading then I thank you and hope that you'll be able to help. The specifics of my situation are as follows:
-Using Oracle 8.1.7 as the database but that's pretty much irrelevant here as I do no database access in this simplified form I'm testing in.
-Forms Server and Form Builder 6i (version 6.0.8.13.0) running on Solaris and being used to develop a simple form with just one button on it which implements my PJC. My real need is a bit more complex but this is fine for a start.
-JDeveloper 3.2.3 used to develop the PJC, compiled with the 1.1.8 JDK and deployed to a standard JAR file.
-Have tried signing my JAR file and resigning the f60all.jar using the same user. Have tried not signing either one. Have tried just signing one of the two. I believe I've tried every combination here with the one that gets me the furthest being the scenario where I don't sign mine and just use the standard one that came with the Forms install. This allows me to get my form up on the screen and at least try to play the sound.
-The code for the PJC is as follows. This code was mostly auto-generated by JDev with the setproperty function and its debug code having been created by me using my successfull 9i experiment code as the base. Anyway, here is the PJC code.
// Copyright (c) 1999 Oracle Corporation
package soundpkg;
import oracle.forms.ui.*;
import oracle.forms.properties.ID;
import java.net.URL;
import java.applet.*;
public class sound extends VButton {
public final static ID PLAY = ID.registerProperty("PLAY");
public String sou_loc = "http://rhqt-oracle.on.prv:6900/las/paul.wav";
public sound() {
super();
try {
jbInit();
catch (Exception e) {
e.printStackTrace();
private void jbInit() throws Exception {
public boolean setProperty(ID property, Object value) {
if (property == PLAY)
try
System.out.println("before soundplay");
sou_loc = value.toString();
System.out.println(sou_loc);
URL sou = new URL(sou_loc);
System.out.println("1");
Applet testapp = new Applet();
System.out.println("2");
AudioClip clip = testapp.getAudioClip(sou);
System.out.println("3");
clip.play();
System.out.println("after soundplay");
return true;
} catch(Exception ex)
ex.printStackTrace();
return super.setProperty(property, value);
Pretty much the only change from my 9i code was to the function call for opening the audio file.
Under Jdev 9i, using Java2 it was:
AudioClip clip = Applet.newAudioClip(sou);
Under Jdev 3.2.3 and using JDK 1.1.8 (have to in order to work with Forms 6i) I changed it to:
AudioClip clip = testapp.getAudioClip(sou);
From all of my reading, I thought this SHOULD have worked. But, of course, it doesn't. One possible problem is the fact that I was forced to create a new instance of Applet in order to be able to reference the getAudioClip function. My other two attempts to reference it without creating a new instance were:
1)Just access it on its own:
AudioClip clip = getAudioClip(sou);
- This resulted in the expected, "method getAudioClip(java.net url) not found in class soundpkg.sound" error
2)Access it by first referencing Applet
AudioClip clip = Applet.getAudioClip(sou);
- This resulted in a, "non-static method getAudioClip(java.net.URL) cannot be referenced from a static context", message
Hence, how I wound up creating the new instance and using it to access the getAudioClip function. Maybe this was the wrong way to troubleshoot it but, being new to Java and about five years removed from my C++ experience, it was the best I could come up with and it at least allowed me to compile. However, once I click on my button to play the sound I get the following error output from the Java Console. I've left the beginning info on just in case version numbers are required or something. Seemingly, the more relevant stuff comes later, beginning with the line generated by my debug code saying "before soundplay". Though, I must admit I'm curious as to why I'm getting all of those other, "opening blah blah blah no proxy", messages as well but they don't seem to be stopping me from running the form so I've ignored them for now. Anyway, here are the errors thrown up by the Java Console:
OUTPUT FROM JAVA CONSOLE FOLLOWS
Oracle JInitiator version 1.1.8.10
Using JRE version 1.1.8.10
User home directory = C:\Documents and Settings\duane.colucci
Proxy Configuration: Manual Configuration
Proxy: blvgate.on.prv:80
Proxy Overrides: *.prv,10.*,*.hrdc-drhc.net
JAR caching enabled.
Cache directory: C:\Program Files\Oracle\JInitiator 1.1.8.10\jcache
Maximum cache size: 50000000 bytes
Opening http://svr02113075.on.prv:8200/web_code/f60all.jar no proxy
Loading http://svr02113075.on.prv:8200/web_code/f60all.jar from JAR cache.
Opening http://svr02113075.on.prv:8200/web_code/sound118.jar no proxy
Loading http://svr02113075.on.prv:8200/web_code/sound118.jar from JAR cache.
Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/MainBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/MainBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/swing/JBufferedAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/JBufferedAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/lwAWT/BufferedAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/BufferedAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/popup/PopupAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/PopupAppletBeanInfo.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/RunformBundle_en_CA.class no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/RunformBundle_en_CA.properties no proxy
Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/registry/Registry.dat no proxy
connectMode=Socket
serverHost=svr02113075.on.prv
serverPort=9001
Forms Applet version is : 60813
before soundplay
http://rhqt-oracle.on.prv:6900/paul.wav
1
2
java.lang.NullPointerException:
     at java.applet.Applet.getAppletContext(Applet.java:138)
     at java.applet.Applet.getAudioClip(Applet.java:240)
     at soundpkg.sound.setProperty(sound.java:57)
     at oracle.forms.handler.ComponentItem.setCustomProperty(Compiled Code)
     at oracle.forms.handler.ComponentItem.onUpdate(Compiled Code)
     at oracle.forms.handler.ButtonItem.onUpdate(Unknown Source)
     at oracle.forms.handler.UICommon.onUpdate(Compiled Code)
     at oracle.forms.engine.Runform.onUpdateHandler(Compiled Code)
     at oracle.forms.engine.Runform.processMessage(Compiled Code)
     at oracle.forms.engine.Runform.processSet(Compiled Code)
     at oracle.forms.engine.Runform.onMessageReal(Compiled Code)
     at oracle.forms.engine.Runform.onMessage(Compiled Code)
     at oracle.forms.engine.Runform.processEventEnd(Compiled Code)
     at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Compiled Code)
     at oracle.ewt.lwAWT.LWComponent.processEvent(Compiled Code)
     at java.awt.Component.dispatchEventImpl(Compiled Code)
     at java.awt.Container.dispatchEventImpl(Compiled Code)
     at java.awt.Component.dispatchEvent(Compiled Code)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Compiled Code)
     at java.awt.LightweightDispatcher.processMouseEvent(Compiled Code)
     at java.awt.LightweightDispatcher.dispatchEvent(Compiled Code)
     at java.awt.Container.dispatchEventImpl(Compiled Code)
     at java.awt.Window.dispatchEventImpl(Compiled Code)
     at java.awt.Component.dispatchEvent(Compiled Code)
     at java.awt.EventDispatchThread.run(Compiled Code)
As you can see from the output and a quick glance at my code above, the program crashes out on the line where I attempt to call the getAudioClip function. And that's about it. This is where I'm stumped. So, again, any help anybody can provide is greatly appreciated.
Thanks in advance,
Duane Colucci

Duane,
don't knowwhy you chose to extend VButton, but the following code works for me. Note that I extend the VBean class. Also I am using Jinitiator 1.3.1.9 (this is what I had available for testing). My first test chowed that there was a problem with the way you specify teh URL string, which is why I harcoded the URL string when building the URL.
Another issue when running it is that you need to sign the file because it needs socket permission (at least this was the error shown on a remote client).
Here's the code
package mypackage3;
import oracle.forms.ui.*;
import oracle.forms.properties.ID;
import java.net.URL;
import java.applet.*;
import javax.swing.JTextField;
import oracle.forms.handler.IHandler;
public class Class1 extends VBean {
public final static ID PLAY = ID.registerProperty("PLAY");
private IHandler mHandler = null;
public Class1()
super();
public void init(IHandler handler)
mHandler = handler;
super.init(handler);
public boolean setProperty(ID property, Object value) {
if (property == PLAY)
try
System.out.println("before soundplay");
URL sou = new URL("http://fnimphiu-lap.de.oracle.com/forms60java/Drums.wav");
System.out.println("1");
//Applet testapp = new Applet();
Applet testapp = mHandler.getApplet();
System.out.println("2");
AudioClip clip = testapp.getAudioClip(sou);
System.out.println("3");
clip.play();
System.out.println("after soundplay");
return true;
catch(Exception ex)
ex.printStackTrace();
return super.setProperty(property, value);
Fran

Similar Messages

  • Problem playing Audio CD (.cda files) on Windows Vista

    Hey,
    I am having problems playing an Audio CD. On XP everything is working fine. On Vista, the files seem to be playing, but I am not getting any sound (playing .wav files for example is also no problem, it's just the cda files from an audio cd).
    This problem does not only occur in my own code, also the JMStudio application produces no sound playing tracks from the cd.
    Is there anything that needs to be configured in Vista in order to make that work?
    Thanks a lot,
    sirpreis

    I should point out there's no such thing as playing a CDA file. CDA files are simply indexing information about where to find the actual track data on the disk.
    My best guess is that Vista's sandbox won't let Java go and fetch the actual audio tracks from the CD, because it's more restrictive than Vistas.
    Other good guesses would including that whatever native code JMF uses to fetch CD audio works in XP but it doesn't work in Vista. That would certainly make sense...
    If JMStudio doesn't work, your code probably wont ever work either. Sorry :-/

  • Play audio in forms

    hi all,
    I am trying to play sound from forms and followed the instruction give in
    Sound PJC - play wav files in Forms on the Web I have two button on the forms, first button ( push_button5) has the implementation class set to sound and created other button and wrote the followin code on when button pressed trigger
    set_custom_property('sound.push_button5',1,'PLAY','http://oraweb6/10days.rm');
    I also signed my jar file but when I run the form and press the button I get th followin error
    FRM-40105 : Unable to resolve reference to the item sound.push_button5.
    I also copied my signed jar file to forms60/java directory and also made changed to formsweb.cfg file as follows
    [pjcS]
    archive_jini=f60all_signed.jar,archive6.jar
    archive_ie=f60all_signed.jar,archive6.jar
    archive=f60all_signed.jar,archive6.jar
    lookandfeel=Generic
    i also resigned f60all.jar and renamed it f60all_signed.jar
    here is my code for sound class
    import oracle.forms.ui.VButton;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.applet.AudioClip;
    import java.applet.*;
    import java.net.URL;
    import oracle.forms.properties.ID;
    public class sound extends VButton
    public final static ID SOUND = ID.registerProperty("SOUND");
    public String sou_loc = "http://oraweb6/10days.rm";
    //"http://127.0.0.1:8888/forms90/java/ringin.wav";
    public sound()
    try
    jbInit();
    catch(Exception e)
    e.printStackTrace();
    private void jbInit() throws Exception
    this.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    this_actionPerformed(e);
    private void this_actionPerformed(ActionEvent e)
    try
    URL sou = new URL(sou_loc);
    AudioClip clip = Applet.newAudioClip(sou);
    clip.play();
    } catch (Exception ex)
    ex.printStackTrace();
    public boolean setProperty(ID p0, Object p1)
    if (p0==SOUND)
    {sou_loc = p1.toString();}
    else {super.setProperty(p0,p1);}
    return super.setProperty(p0, p1);
    please help
    thanks in advance
    Rajesh

    Hi Frank,
    thanks for the reply. There was a typo in the block name, I just have one block on the form so now I have removed the block name and I am giving
    set_custom_property('push_button5',1,'PLAY','http://oraweb6/10days.rm');
    I do not see that error again but when I press the button nothing happens.
    please help I am trying to run this for last one week
    thanks in advance
    Rajesh
    Hi,
    the error message states that the button
    sound.push_button5. cannot be found. Please check if
    the block name "sound" and the item name
    "push_button5" exist in your Forms module.
    Frank

  • Problems playing audio after upgrade

    Hi,
    On 4/1, I did a full system upgrade (pacman -Syu) and had almost 200 package updates.  It wasn't until today that I realized that I cannot play any videos (though I think the problem is really audio).  I've been playing around with moc and mpd for the past week, so that probably helped in delaying my discovery of this problem, and as such, I don't know if the problem existed before my upgrade on 4/1 or as a result of the upgrade.
    Any video I play in VLC doesn't have audio.  Any video I play in mplayer and any flash video in Firefox has no audio and is played back at an accelerated rate.  Any audio I play in moc or Rhythmbox is also played back at an accelerated rate, however I don't hear any audio.
    I am using gstreamer and pulseaudio.  So I tried rolling back all the gstreamer/pulseaudio packages to the versions before I updated, but that didn't make any difference.  Right now mpd works and is setup for pulseaudio.
    Any ideas?
    Kyle

    Hi,
    On 4/1, I did a full system upgrade (pacman -Syu) and had almost 200 package updates.  It wasn't until today that I realized that I cannot play any videos (though I think the problem is really audio).  I've been playing around with moc and mpd for the past week, so that probably helped in delaying my discovery of this problem, and as such, I don't know if the problem existed before my upgrade on 4/1 or as a result of the upgrade.
    Any video I play in VLC doesn't have audio.  Any video I play in mplayer and any flash video in Firefox has no audio and is played back at an accelerated rate.  Any audio I play in moc or Rhythmbox is also played back at an accelerated rate, however I don't hear any audio.
    I am using gstreamer and pulseaudio.  So I tried rolling back all the gstreamer/pulseaudio packages to the versions before I updated, but that didn't make any difference.  Right now mpd works and is setup for pulseaudio.
    Any ideas?
    Kyle

  • Problems Calling Graphics by Forms on the Web

    Hi!
    I'm not able to call a graphic on the web using Forms6i (Version 6.0.8.8.0 (Production)) and Graphics (Version 6.0.5.33.0).
    I made a call to a graphic using the RUN_PRODUCT built-in.
    On a client-server connection the call has no problem.
    On the Web i have no error messages, no results!!!
    I tried to populate a chart item with the graphic (always with RUN-PRODUCT) and i had a correct result but when i tried to enlarge the item i had an error message (FRM-92100: Your connection to the Server was interrupted with him detail composed by a lot of java exceptions).
    HELP!!!!!!!!
    null

    Start by setting the "Java console" on in the Jinitator control panel on the client machine. This will show you if Jinitator is called and if it is downloading the correct Jar files.
    If you weren't prompted to install Jinitator I would guess you have some security setting you need to set in your IE to allow the download of an exe file.

  • Problems playing Audio Books

    I have purchased and downloaded 2 audio books from iTunes, when I try to play them back I select 'Audio Books' on the iPod and then get a message saying "No Audio Inputs" and I cannot access the audio books. Any suggestions?

    Unfortunately, I have so many audiobooks I can't utilize the Audiobooks option under Music tab for the iTouch. In order to transfer an audiobook I want to listen to I create a playlist containing the book of interest and transfer by checking the corresponding playlist.

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • Creative Zen 32GB "There is a problem playing this audio" AAC

    GCreative Zen 32GB "There is a problem playing this audio" AACZ All right, this is driving me nuts. I have a Zen 32GB and a Vista 32-bit machine. I have been encountering a lot of problems playing AAC files on my Zen--many of the tracks stop short, and the error message "There is a problem playing this audio" appears.
    These are AAC files that I ripped off my own CDs using iTunes, so there are no DRM issues. ? I'm not sure if the problem lies in the actual ripping process (although the problem tracks play on my iPod without problem), the importing into my Zen using Zen Media Explorer, or my Zen trying to play the tracks. I've tried turning off my antivirus program, as well as checking the box in iTunes that double-checks for audio errors after ripping. I thought at first that it could be related to scratched CDs, but it also happens with pristine CDs.
    I have latest firmware (.2.03) installed, and also the latest version of Zen Media Explorer.
    I've searched this forum as well as Google for this exact error message, and don't get any related hits. Can anyone out there help me? Please?

    Thanks for that response--I was beginning to feel a little neglected. It's disappointing, though--one of the reasons I bought the Zen was because it advertised AAC compatibility, so that I could have just one library of AAC files for my iPod and Zen, instead of entirely duplicate libraries of AAC and WMA files. Most of the AAC files I've imported into the Zen play fine--I just have to check all of the tracks to see which ones have that audio error. Usually, if I re-import the track, it comes out fine (eventually).

  • Problem during view Adobe Form in Web Request

    Hi All,
    I am facing problem while viewing the adobe form inside the Web Request form.
    Let me describe the issue clearly.
    I need to have a table in Adobe Form.So i created one table type and bind it to the table structure created, in Adobe Form.
    Then i uploaded the form as web request successfully.
    Now when i m trying to view the form from web ui, its unable to assign child node data at runtime.so dump is coming.
    Can anyone show light on this....i have tried all the possibilities.
    Unfortunately there is no standrad scenario available for reference.
    Regards,

    Hi Satish,
    Thanks for your reply.But this is not my requirement.
    If you will go to tcode CRM_UI and log in using business role CRMGRMPRGMAN, then go to Application and open one application.Here there is one assignment block called 'Application Form'. Here i have uploaded my Adobe Form as web request.
    This is working fine when i have simple linear form.
    But when i am using table inside the form and doing binding for it, Application is getting created with that form but while openning it here in the assignment block, dump is coming as below.Its not able to assign the child node.
    The ABAP call stack was:
    Method: NODE_ELEM_2_STRUCT of program CL_WD_ADOBE_SERVICES==========CP
    Method: NODE_2_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: DATASOURCE_2_FM_PARAMS of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Regards...

  • Play audio and video on form.

    i want play audio and video at form plzzzzzzzzz help me

    in 6i there is a Item-Type called SOUND. You can use this for Sound. There is no direct feature for video.
    ! Don't use the SOUND-Item's, because they are obsolet in Forms 10g !
    Else you can use JavaBeans , which you have to find in the Internet or build for yourself to manage audio and video

  • Problem with playing audio data using Real Player

    i've seen the intruction for playing video data (.rm) using real player and it works. Then i tried to play audio data (.wav, .dat, .mp3) with real player, but it didn't work.
    These are some codes i've wrote:
    ------------------------------------------- BEGIN PL/SQL CODES---------------------------------------
    CREATE TABLE SONGS
    ( Item_ID number not null PRIMARY KEY,     
    Audio ordsys.ordaudio
    create or replace procedure load_audio(id integer, filename in varchar2) as
    obj ORDSYS.ORDAudio;
    ctx RAW(4000) := NULL;
    begin
    INSERT INTO SONGS VALUES(ID,
         ORDSYS.ORDAudio.init());
    SELECT audio into obj from Songs
    where item_id = id FOR UPDATE;
    obj.setSource('FILE','AUDIODIR', filename);     
    Obj.setDescription('A movie trailer');
    Obj.setMimeType('audio/x-pn-realaudio');
    Obj.setFormat('Real Media File Format');
    obj.import(ctx);
    UPDATE Songs
         SET audio=obj WHERE item_id=id;
    COMMIT;
    END;
    show errors;
    truncate table songs;
    exec load_audio(1,'aud1.wav');
    exec load_audio(2,'aud2.mp3');
    exec load_audio(3,'testaud.dat');
    -- just for comparison, i put a video file (.rm)
    exec load_audio(4,'autorace.rm');
    commit;
    show errors;
    create or replace procedure get_audio(
         audio_id in varchar2,
         mimetype out varchar2,
         data out blob) as
         tempBLOB BLOB;
         s varchar2(200);
    begin
    -- Deliver audio and mimetype
    select t.audio.getcontent(), t.audio.getmimetype()
    into tempBLOB, s
    from songs t where t.item_id = audio_id;
    data := tempBLOB;
    mimetype := s;
    end;
    show errors;
    ---------------------------------------- END of PL/SQL CODES-------------------------------------
    -----------------------------------MOUNTPOINT at FILESYSTEM rmsever.cfg-------------------
    <List Name="pn-oracle-audio">
    <Var Database="oracle"/>
    <Var HeaderCacheSize="2048"/>
    <Var LobFetchSize="32768"/>
    <Var MaxCachedConnections="1"/>
    <Var MountPoint="/dbaudio/"/>
    <Var Password="ZGF2aWQ="/>
    <Var ShortName="pn-oracle"/>
    <Var SQL="get_audio"/>
    <Var Username="skripsi"/>
    </List>
    ----------------------------------------End Of MOUNTPOINT----------------------------------
    then in the real player, i tried some urls :
    http://david:88/ramgen/dbaudio/1 --> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/2 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/3 ----> it didn't work, it was said invalid path
    http://david:88/ramgen/dbaudio/4 ----> it worked
    did i put a wrong url?
    does the http://..../ramgen/... path is just for ram file?
    can anyone show me the way to play audio data using real player?
    Thanx before.

    Yes, realserver expects an exact mimetype.
    to make matters worse, it expects audio/x-pn-realaudio (an audio mimetype) for video!?!?!
    Seems the code inside maps multiple file extensions to some mime type. Only one is allowed.
    I have used the unix strings commands in teh plugins directory to find the exact mime type realserver is expecting. The file format plugins have this information in them.
    Larry

  • Problem running Forms on Oracle Web Server 3.0

    I have implemented Developer/2000 forms on Oracle Web Server 3.0 (Non Cartridge Implemetation). Whenever there are multiple client request for the form, Forms server raised the Dr watson error (windows NT 4.0).
    Kind request to anybody who has solution for the above.

    Someone got the same message on a Suse 6.0. On a redhat 5.x, the
    required files (libraries) are in packages
    libstdc++-2.8.0-8
    libstdc++-devel-2.8.0-8 (? may not be necessary)
    You can get the above packages on redhat ftp and mirror sites.
    Again, oracle on linux is really "RedHat-ish"!!!
    Robert Xu
    lin (guest) wrote:
    : After I installed Oracle Web server on turbo linux,
    : I started owsctl wrb, and got error message
    : libstdc++s0.2.8.
    : I did a find from root to search this file, but not found.
    : anyone can help me.
    : thanks
    null

  • Cannot playing audio from web

    Dear guys, i tried to play audio file from a website www.seminarseumurhidup.com but it said that plugin needed. Then i tried to find the plugin but could find any. please kindly help

    you can download Least flash player plugin from http://www.adobe.com/go/getflashplayer/

  • Problem Playing Video in Premiere Pro CS4

    I am having a problem playing video in premiere pro. When I input any movie clip and try to play it in both the timeline and in the preview mode, the audio works fine but the video only plays a few seconds worth of footage at a really slow pace so that it takes up the entire time. For instance if I load a 3 minute video, the sound is normal but over the coarse of that 3 minutes I will only see a small number of the frames and they are cycled through in ultra slow motion.
    All the clips play normally outside of premiere. I have uninstalled and reinstalled the program. I have premiere installed on my laptop and it works fine. I have tried rendering the video first and it still doesn't work. I have tried holding shift before the program is loading and it did nothing. I have downloaded all the updates too. Videos seem to play fine in After Effects.
    Also, I am having trouble when importing HD video into premiere and after effects. For some reason the programs freeze when I try to import footage from my Creative Vado HD pocket video camera.
    Here are my computer specs
    Windows Vista Ultimate 32 Bit
    Intel Core2 Quad q8200
    ATI Radeon 4670 Graphics Card
    Gigabyte Motherboard
    4GB of 800 Mhz RAM
    This is really frustrating. Any help would be greatly appreciated

    Keith,
    The file extension .AVI indicate a "wrapper." All sorts of stuff can be in that wrapper *. Some of that stuff will play/edit fine. Much will not and create issues, as you have seen. Your camera uses a CODEC to create those .AVI files. That CODEC is the issue. I recommend G-Spot to find out what the CODEC is. Some times it's just a matter of having the proper CODEC installed on the computer. Most of the time, it takes much more than that - hence Eddie's links on "conversion." At least G-Spot will get us all on the same playing field, and explicit help can follow - probably to study Eddie's links. My guess is that your camera uses some form of DivX CODEC, hence the problem that you see.
    Good luck,
    Hunt
    * Think of .AVI like the foil wrapper on a stick of gum, when you remove the outer lable. You know it's gum, but not what flavor. Could be Juicyfruit, or Spearmint, or Double-mint. G-Spot will tell you the flavor. PrPro likes some flavors, but hates others.

  • Cannot play audio CD with Creative MediaSource Pla

    Hi All,
    I recently installed an Audigy 2 ZS Platinum soundcard and the Creative MediaSource Player software. I also purchased Creative 5. Analog speakers. Have everything configured pretty well now and really enjoying the enhanced sounds!
    My problem is that I cannot play audio CDs using the MediaSource Player. I can see my DVD Player and CD Player in the MediaSource Player 'Source' column and a list of all the tracks on the CD. (no track info, just track numbers and length)
    When I double-click on a track it cycles through all the tracks and then places an 'X' next to each one in the 'Now Playing' list window. If I have other music files from my harddri've available, it will start playing one of them.
    I've tried different CDs with the same results.
    I can use both the DVD and CD dri'ves to play an audio CD if I use any other player (Winamp, Windows Media Player, etc.) and use both dri'ves everyday for loading software and reading files. It will also read the demo DVD Audio disk that came with the card using the DVD-Audio player they provide so I'm pretty sure there's nothing wrong with the hardware or drivers.
    I've read all the info that came with the card and on the Creative Web site and have been through every configuration screen multiple times but haven't found a switch that turns this feature on.
    Would like to get this working so I can standardize on one player that allows me to use all the advanced features of my new card.
    Thanks in advance for any light you can shed on this.
    Jay Perez

    A good way to see what kinds of things you might need for something like vlc is to look at the optional dependencies for the package.  So if you do pacman -Qi vlc if the package is installed on your system already, or pacman -Si vlc if not yet installed, you can see in the output what kinds of optional dependencies there are.  Typically there is a short description of the extra functionality that the optional dependency can provide as well. 
    So in the case of vlc (and the libcdio optional dep) I get:
    $ pacman -Qi vlc
    Name           : vlc
    <SNIP>
    Optional Deps  : avahi: for service discovery using bonjour protocol [installed]
                     <SNIP SOME MORE>
                     projectm: for ProjectM visualisation plugin
                     libcaca: for colored ASCII art video output [installed]
                     libgme: for libgme plugin [installed]
                     librsvg: for SVG plugin [installed]
                     gnome-vfs: for GNOME Virtual File System support
                     libgoom2: for libgoom plugin
                     vcdimager: navigate VCD with libvcdinfo [installed]
                     xosd: for xosd support
                     aalib: for ASCII art plugin [installed]
                     libmtp: for MTP devices support [installed]
                     smbclient: for SMB access plugin [installed]
                     libcdio: for audio CD playback support [installed]
                     ttf-freefont: for subtitle font
                     ttf-dejavu: for subtitle font [installed]
                     opus: for opus support [installed]
                     libssh2: for sftp support [installed]
    <SNIP>
    Last edited by WonderWoofy (2013-08-24 18:45:56)

Maybe you are looking for

  • My itunes on my macbookpro will not sync with my iphone5c

    I just got an iphone5c and i am trying to put music from my itunes on my macbook onto my phone. The thing is that it will not let me sync AT ALL. The option to sync wont even come up as a link to click. I have updated everything and still nothing wil

  • Customer service complaint / Rude phone rep Rachel

    I am a 10+ year loyal Verizon Wireless customer.  I have long sung the praises of Verizon and convinced my family members to use Verizon..which they do.  I have had the occasional...I think 2 past minimal overages and have happily paid for those over

  • How to use the user and role API's and where to use it

    Hi All, I have configured SSO for my UCM11g. Now my application authenticates through the Oracle SSO login page. Currently it is working with SQL authenticator. Now, i have to use LDAP authenticator. when i will configure the LDAP authenticator, i ha

  • Multiple sources

    I would like to have some advice what to do best and what can be done in the following scenario: In our rpd we have an oracle db as source. Now the come with an excel file as source. So we getting a rpd with a multiple source. In the oracle db we hav

  • ITAB  data as an mail attachment

    Hi all, I wantto send the ITAB Data as an mail attachment. But i amgetting error. Mail not been sent . What is the mistake i am doing ? TABLES:adr6. TYPES: BEGIN OF t_test,        x(3),        y(3),        z(3),      END OF t_test. DATA: itab TYPE ST