Playing .dcr files on linux-based server

Hi there. So I've got situation like this:
I would like to present .dcr files on my site (modified
Coppermine gallery). And it would be great if I could play these
files with internal player (or sth like this) and not count that my
visitors have a plugin installed.
The point is that only about 55% of Windows users can play
.dcr files (via browser), not even mention Linux users. So I would
like to let my visitors play in games (.dcr files) without any
actions from their side.
Is it possible guys?

Oops. didn;t mean to hit send ;). No, I really don't think
this is possible.
The browser needs to know how to interpret the DCR file (as
it does a SWF
file) - hence the need to download the Shockwave or Flash
plugin in the
first place.
Remove '_spamkiller_' to mail

Similar Messages

  • SWF to play mp3 files located on the server

    Hello,
    Does anyone know if it is possible to create an SWF file that can play mp3 files directly from the server, without the need for a streaming media server or external JS.
    And also for the application to read the current directory its located in and build a playlist based on the files inside.
    any information of examples would be greatly appreciated.
    Peter.

    As for loading and playing the files there is no issue.  Simply load them as you would load any file.  You can even use a relative path if they are in the same folder as the SWF, or a sub-folder that is in the folder with the SWF.
    As for looking at the server directory for what files are there, and using them - I know of no way to do this.  That doesn't mean it is impossible, just that I haven't come across a method in my experience.
    What I typically do is to archive the list of files in an XML file, and load the XML.  I know, that adds an extra step, and an extra file, but it is the easiest method for approximating what you want to do.
    Let me edit this response.
    You could use javascript, or a server language to grab the list of files in the directory and pass it into Flash via the ExternalInterface classes.

  • JMF Not playing wav files in Linux

    Hi all,
    I'm using the code below to play a simple wav file in Linux:
    ==
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.media.ControllerEvent;
    import javax.media.ControllerListener;
    import javax.media.EndOfMediaEvent;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.NoPlayerException;
    import javax.media.Player;
    * @author
    public class AudioTest implements ControllerListener {
        /** Creates a new instance of AudioTest */
        public AudioTest() {
        public static Object syncObject = new Object();
        public static void main(String args[]) throws InterruptedException {
            try {
                URL url = new URL("file", "", "/magichome/xruser/jmf/WindowsXPStartup.wav");
                String mediaFile = url.toExternalForm();
                System.out.println(mediaFile);
                MediaLocator mediaLocator = new MediaLocator(mediaFile);
                System.out.println(mediaLocator);
                if(mediaLocator != null) {
                    try {
                        AudioTest test = new AudioTest();
                        //Player player = Manager.createPlayer(mediaLocator);
                        Player player = Manager.createPlayer(url);
                        player.addControllerListener(test);
                        System.out.println(player);
                        player.start();
                        synchronized(syncObject) {
                            syncObject.wait();
                            player.stop();
                            player.close();
                            System.out.println("CLosed...");
                        Thread.sleep(10000);
                        System.exit(0);
                    } catch (NoPlayerException ex) {
                        ex.printStackTrace();
                    } catch (IOException ex) {
                        ex.printStackTrace();
                    } catch (Error err) {
                        err.printStackTrace();
                //com.sun.media.amovie.AMController@9fef6f
            } catch (MalformedURLException ex) {
                ex.printStackTrace();
        public void controllerUpdate(ControllerEvent event) {
            System.out.println(event);
            if (event instanceof EndOfMediaEvent) {
                synchronized(syncObject) {
                    syncObject.notify();
    }==
    But on running the above program with the following commands:
    /usr/java/j2sdk1.4.2_08/bin/javac -classpath /magichome/xruser/jmf/jmf.jar:./:/magichome/xruser/jmf/mediaplayer.jar:/magichome/xruser/jmf/multiplayer.jar:/magichome/xruser/jmf/sound.jar:customizer.jar AudioTest.java
    /usr/java/j2sdk1.4.2_08/bin/java -classpath /magichome/xruser/jmf/jmf.jar:./:/magichome/xruser/jmf/mediaplayer.jar:/magichome/xruser/jmf/multiplayer.jar:/magichome/xruser/jmf/sound.jar:customizer.jar AudioTest
    I get the following error:
    ==
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    com.sun.media.content.unknown.Handler@1ee4648
    javax.media.TransitionEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Unrealized,current=Realizing,target=Started]
    javax.media.DurationUpdateEvent[source=com.sun.media.content.unknown.Handler@1ee4648,duration=javax.media.Time@1e8a1f6
    javax.media.RealizeCompleteEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Realizing,current=Realized,target=Started]
    javax.media.TransitionEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Realized,current=Prefetching,target=Started]
    Unable to handle format: LINEAR, 22050.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 88200.0 frame rate, FrameSize=32 bits
    Failed to prefetch: com.sun.media.PlaybackEngine@91cee
    Error: Unable to prefetch com.sun.media.PlaybackEngine@91cee
    javax.media.ResourceUnavailableEvent[source=com.sun.media.content.unknown.Handler@1ee4648,message=Failed to prefetch: cannot open the audio device.]
    ==
    I'm unable to isolate the problem here. When I play the file with mplayer, it plays just fine. But with the code above, it just does not wish to play..
    Can someone please point out the error I am commiting.
    Thanks

    I'm using the code below to play a simple wav file in
    Linux:I'm running the performance pack under Win XP, here..
             try {
                 URL url = new URL("file", "",  "/magichome/xruser/jmf/WindowsXPStartup.wav");
    ...Is that a linear encoded, 16 bit, stereo sample
    recorded at 22050Hz sample rate? 4.81 seconds
    (424,644 bytes), content type audio.x_wav?
    The reason I ask is just that you do not mention if
    you'd tested on any other OS, and I found a very
    similarly named WAV of the above description on
    my system and tried it with your code - and in
    JMStudio.
    It ran flawlessly in both.
    But on running the above program ...
    I get the following error:...
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    com.sun.media.content.unknown.Handler@1ee4648...
    Unable to handle format: LINEAR, 22050.0 Hz,
    16-bit, Stereo, LittleEndian, Signed, 88200.0 frame
    rate, FrameSize=32 bits...
    I'm unable to isolate the problem here. When I play
    the file with mplayer, What is 'mplayer'? The default media player
    of the OS?
    ..it plays just fine. But with
    the code above, it just does not wish to play..
    Can someone please point out the error I am
    commiting.I cannot tell what the problem is, sorry. Just
    thought I should check in and note there is
    nothing wrong with the code, and that WAV
    is sure understood by Windows based JMF.

  • Playing MPEG4 files on Linux with JMF

    Hi all,
    Is it possible to get MPEG4 files to play through the JMF on Linux?? I've been stumped at this for quite a while now and is hoping for some help...
    The area's i found and look at are
    http://www.onjava.com/pub/a/onjava/2002/12/23/jmf.html - this provides a brige between QT for Java and the JMF but these's no version for Linux, only windows and mac...
    the ibm is an evaluation copy only and displays a nasty ibm in the corner so is no good..
    Please help, i'm stumped...

    hi there,
    I got the IBM logo from reading the documentation that you can download with the codec, it says:
    Q: How can I disable the IBM logo that appears on the video?
    A: The logo appears on this evaluation version. The licensed version will not have any logo shown.
    From that i was scared away and just didn't install the codec, well after reading you notes, i've installed the codec and placed it in the JMFRegistry. Just one problem, how do you get/tell java to use it, as my program still won't run an mpeg4 movie.
    Here's what my JMFRegistry (in plug-ins/codec) says once i've installed codec:
    Input Formats---->
    0. javax.media.format.VideoFormat
    H263
    1. javax.media.format.VideoFormat
    H263/RTP
    2. javax.media.format.VideoFormat
    MP4I
    3. javax.media.format.VideoFormat
    MP4I/RTP
    4. javax.media.format.VideoFormat
    DIVX
    5. javax.media.format.VideoFormat
    DX50
    6. javax.media.format.VideoFormat
    DM4V
    7. javax.media.format.VideoFormat
    MP4V-ES/RTP
    Output Formats--->
    0. javax.media.format.YUVFormat
    YUV Video Format: Size = null MaxDataLength = -1 DataType = class [B yuvType = -1 StrideY = -1 StrideUV = -1 OffsetY = -1 OffsetU = -1 OffsetV = -1
    1. javax.media.format.RGBFormat
      RGB, -1-bit, Masks=-1:-1:-1, PixelStride=-1, LineStride=-1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Terminal Keyboard features for a Linux based Server System

    Hi Forum,
    there are some highlighted characters within terminal functions at a linux server (redhat or suse or ...) With Putty or a linux connection I get the special keys that are highlighted to work with the "alt" key pressed. Example is the terminal button "ok" with the "o" highlighted. If I press "alt"+"o" it would be choosen and the next page will be shown. Is there a way to make this work on a MacOSX Terminal? I had no chance to find anything similar with google. I hope you might find a solution!
    Thank you and best regards,

    Post Unix and Terminal queries to the Unix forum under OS X Technologies where those mavens frolic.

  • Why READ_IMAGE_FILE is not working in Linux Appln Server?

    Hello!
    I have a form with a new_form_instance Trigger I wrote the read_image_file trigger to read a GIF file in an image item.It works fine on windows XP(development machine).I copied the GIF file to the same location where my fmx files are there in Linux application server.I copied and compilied my fmb file in linux application server.No compilation error is there.But when I run form from Linux the form hangs and my read_image_file command is at new form instance Trigger.I have checked the case sensitivity of the file and the permission etc in Linux.In windows Development machine the form runs successfully.What could be the problem.Please help.......
    Jayashree

    Hi
    Incase if you find any server related error like "FRM-92101" happening on READ_IMAGE_FILE functionality, try to change the image item format from TIFF to BMP/JFIF.
    Otherwise if you changed any Jinitiator or JRE Version, sign again for all the JAR Files and restart your server.

  • Read_image_file command does works on Linux application server

    Hello!
    I have a form with a new_form_instance Trigger I wrote the read_image_file trigger to read a GIF file in an image item.It works fine on windows XP(development machine).I copied the GIF file to the same location where my fmx files are there in Linux application server.I copied and compilied my fmb file in linux application server.No compilation error is there.But when I run form from Linux the form hangs and my read_image_file command is at new form instance Trigger.I have checked the case sensitivity of the file and the permission etc in Linux.In windows Development machine the form runs successfully.What could be the problem.Please help.......
    Jayashree

    For me, attempting the following:
      READ_IMAGE_FILE('bullet_ball_glass_blue.gif', 'GIF', 'IMAGE7');
    gives this error:
      FRM-47109: Cannot locate image file bullet_ball_glass_blue.gif
    Changing my command to:
      READ_IMAGE_FILE('bullet_ball_glass_blue.gif', 'URL', 'IMAGE7');
    loads the image successfully.
    If you truly are not getting an error message (mine appears in the status bar), then perhaps the file is being found, but the image format is not recognized or otherwise incompatible. Test this by loading one of the the images that load successfully into your iconic buttons. If that image loads successfully into your image item, fix the problem GIF image. (Recreate or open & resave with a graphics program, etc.)
    If this does not appear to be the problem, the only things I can think of are for you to confirm that, in formsweb.cfg:
      1. The archive_jini entry includes your image JAR
      2. If imageBase=DocumentBase, change to imageBase=codebase
    The second change may temporarily break your iconic buttons. This can be fixed by updating the buttons' Iconic Filename properties specifying only relative paths found within the JAR. Since my image is stored in the root of my JAR, no path need be specified. Had I placed my image in a subdirectory within my JAR, named images, my call would have to be changed to the following:
      READ_IMAGE_FILE('images/bullet_ball_glass_blue.gif', 'URL', 'IMAGE7');
    I'm not sure whether any of these suggestions will help, but since I had no problems, I suspect it's simply a matter of differing configurations. The two items that I listed are the only two likely differences I could think of.
    Eric Adamson
    Lansing, Michigan

  • File Receiver channel, Append issue on Linux FTP server

    Hi,
    I have a File_ReceiverChannel_FTP_Order that is using the “File Content Conversion” message protocol.
    I have setup the adapter to use File Construction Mode “Append”
    When I run this on a windows FTP server, it is working as designed.
    But when I’m trying to use our Linux FTP server the append function does not work.
    My adapter does not append but it is overwriting the content of the file!
    Does any one know what to do about this?

    Hi
    i think you need to change the  protocol as the linux system  understand the NFS .
    Thanks
    sudhir sharma

  • Configure ODBC to access a CSV file on Linux for access from BI Server

    How to configure an ODBC connection to a CSV file on Linux for access from the BI Server Repository physical layer
    I am migrating a working windows OBIEE installation to Linux and can not seem to connect to csv files on Linux (from th BI server also running on the same Linux machine).
    I am using SUse Linux Enterprise server / 10 (Slash 10) standard odbc drivers
    My odbc ini file entries are:
    [ODBC]
    Trace=0
    TraceFile=odbctrace.out
    TraceDll=/app/oracle/product/10.1.3/OracleBI/odbc/lib/odbctrac.so
    InstallDir=/app/oracle/product/10.1.3/OracleBI/odbc
    UseCursorLib=0
    IANAAppCodePage=4
    [ODBC Data Sources]
    AnalyticsWeb=Oracle BI Server
    Cluster=Oracle BI Server
    SSL_Sample=Oracle BI Server
    idcbicsvfiles=Odbc Text driver
    [idcbicsvfiles]
    Description = Odbc Text driver
    Driver = Odbc Text driver
    Directory = /data/oracle/OracleBIData/idc
    #ReadOnly = No
    #CaseSensitive = No
    #Catalog = No
    ColumnSeperator = ,
    #Trace = 1
    #Tracefile =/data/oracle/OracleBIData/odbctrace.txt
    #Username      = oracle
    #Password      = ''
    [AnalyticsWeb]
    Driver=/app/oracle/product/10.1.3/OracleBI/server/Bin/libnqsodbc.so
    Description=Oracle BI Server
    ServerMachine=local
    Repository=
    Catalog=
    UID=
    PWD=
    Port=9703
    The csv files I want to use are in the directory /data/oracle/OracleBIData/idc to which I have set up a working and checked connection ([idcbicsvfiles]) on the linux machine itself.
    The error message I get when I select view data in the physcial layer is:
    [NQODBC][SQL_STATE: HY000][nQSError: 10058] A general error has occurred.
    [nQSError: 43093] An error occurred while processing the EXECUTE PHYSICAL statement.
    [nQSError: 16023] The ODBC function has returned ans error. The database may not be available, or the network may be down.
    Please can anybody give me a clue on how to get this working e.g. a working odbc.ini file from your own installation (and/or a tip for the odbc driver choice/configuration)
    P.S. I know this is not supported by Oracle but can not imagine, that nobody is using this.

    Hi,
    Chekc this...Re: Is there ODBC driver for excel flat file in Unix Box
    Re: OBIEE to use a CSV file as a data source on Linux
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 8, 2010 2:50 AM

  • EA6500 Media Server Error Message trying to play MPGE files "File is Corrupt or not supported"

    To all
    I have another Media Server on a WRT610N router and I am able to play the files properly. Is this a bug on the EA6500 Media Server implementation.?

    I see. I understand Cisco just recently released this model in the market so probably there would be more tests to be done for further isolation and come up with a fix solution if proven to be really an issue. I guess for now we'll stand by for updates and just make the best out of Cisco's one of the top of the line routers.

  • I Tunes will not play play back files ripped with Handbrake on 10.6.8 Server

    I have hundreds of files ripped with Handbrake that play back fine on my Mac Mini and iMacs and Macbooks connected to a server running 10.6.8 (the files are stored on the server).  However, when I try to play the files with iTunes on the server machine itself, I hear volume but get a blank screen.  The problem seems limited to mv4 files ripped with Handbrake, as my MOV files will play fine on the server.
    Any ideas?  I tried loading Perian (latest version) on the server machine but it did not fix the problem.  Same blank screen.
    Just to add, movies download from iTunes (M4V type) have the same issue - blank playback on the server.  Only the MOV file plays.  All of these files will play when Quicktime is used as a player, just not with iTunes.

    My approach to this problem has been to start by setting up the new os x 10.10 servers and just two os x 10.10 clients. I've plodded through setting up the server1 and client 1 and then checking that server2 replicates correctly and client 2 can be deployed and managed via DeployStudio and Profile Manager. At the moment I am using client 2 for my own day to day work to ensure I spot snags before the students do.
    Once I happy with the microcosm I've created, it's a matter of syncing  /Users on the old and new servers with rsync and telling DeployStudio that the hundred or so clients that are currently running 10.6.8 and are binding to 10.6.8 servers need to be re-imaged with the workflow that client 2 is currently using. (Actually I'll probably do one client per subnet first before hitting the 'Make it so!' switch.)
    The most laborious part of the migration for me has been recasting MCX preferences set with Workgroup Manager as 'profiles'. I have never been happy with automated migration for servers. Setting up a server is not particularly difficult and you end up with a clean and documented installation that you understand fully that uses current methods and no legacy settings or obsolete hacks.
    I've no idea whether this is the most efficient or best method, but it feels safe to me; even after deployment, until I shutdown my beloved Xserves for the last time I'll be able to roll the whole system back to 10.6.8 within a couple of hours if something goes wrong.
    C.

  • Migrating from Linux based Tacacs+ server to Cisco ACS 1113 appliance

    I'm trying to migrate my configuration from a Linux based Tacacs+ server to the Cisco ACS 1113 appliance. Does anyone have any recommendations.
    Thanks.

    Hi
    We (extraxi) offer migration and general consultancy for ACS if you need professional help.
    www.extraxi.com/contact.htm

  • Problem while generating file in linux server

    I am generating one text file in windows server by using UTL_FILE .after completion of line it is coming to next line properly.
    When i am generating the same file in linux server by using UTL_FILE. It is not going to next line after the end of file.Instead of that it is showing one BOX symbol .After that it is not moving to next line.it is continuing with that box
    for example:
    I generated the file in Windows server the output is
    "number name age
    number name age
    etc..."
    If I am generating the same file LINUX server the output is
    "number name age 'Box symbol' number name age'Box symbol'etc..."
    please help me out.....i have to submit this job in the next 12 hours....

    M_FIELD_VALUE := SUBSTR(M_FIELD_VALUE,1,C6_REC.DFCS_FIELD_SIZE);
                        IF (NVL(LENGTH(M_ROW_VALUE),0) + NVL(LENGTH(M_FIELD_VALUE),0)) < 32000 THEN
                        M_ROW_VALUE := M_ROW_VALUE || M_FIELD_VALUE;
    END IF;
    END LOOP; End Column Loop D
    UTL_FILE.PUT_LINE(M_FILE_HANDLE,M_ROW_VALUE);------here I am printing the row in text format

  • Play audio file with jmf on linux?

    a simple audio player as flow:
    import javax.media.*;
    import java.io.File;
    import java.net.URL;
    public class SimpleAudioPlayer {
        private Player audioPlayer = null;
        public SimpleAudioPlayer(URL url) throws Exception {
            audioPlayer = Manager.createRealizedPlayer(url);
        public SimpleAudioPlayer(File file) throws Exception {
            this(file.toURL());
        public void play() {
            audioPlayer.start();
        public void stop() {
            audioPlayer.close();
        public static void main(String[] args) throws Exception {
            File file = new File("/usr/local/download/1.wav");
            SimpleAudioPlayer sap = new SimpleAudioPlayer(file);
            sap.play();
    }when run the program
    javac -cp jmf.jar SimpleAudioPlayer.java
    java -cp .:jmf.jar SimpleAudioPlayer
    the output as flow:
    Unable to handle format: ima4/ms, 8000.0 Hz, 4-bit, Mono, Unsigned, 4027.0 frame rate, FrameSize=4096 bits
    Failed to prefetch: com.sun.media.PlaybackEngine@defa1a
    Error: Unable to prefetch com.sun.media.PlaybackEngine@defa1a
    How can I play wav file with jmf on linux?(OS is debian5 and jmf cross-platform pack)

    thanks for your reply.
    I tried to replace the wav file "1.wav" with the linear encoded WAV download from pscode.org,and run the code again,but
    BasicTrackControl:prefetchTrack():96 1 bm = com.sun.media.BasicRendererModule@1186fab
    BasicRendererModule.doPrefetch:155 Render : true
    Render buffer size: 32768
    BasicRenderModule.doPrefetch:159
    javax.media.ResourceUnavailableException: Cannot intialize audio device for playback
    at com.sun.media.renderer.audio.JavaSoundRenderer.open(JavaSoundRenderer.java:93)
    at com.sun.media.BasicRendererModule.doPrefetch(BasicRendererModule.java:158)
    at com.sun.media.BasicTrackControl.prefetchTrack(BasicTrackControl.java:99)
    at com.sun.media.PlaybackEngine.doPrefetch1(PlaybackEngine.java:682)
    at com.sun.media.PlaybackEngine.doPrefetch(PlaybackEngine.java:658)
    at com.sun.media.PrefetchWorkThread.process(BasicController.java:1430)
    !!!!!!!§§§§§§§§§§§ BasicTrackControl:prefetchTrack():96
    at com.sun.media.StateTransitionWorkThread.run(BasicController.java:1339)
    Unable to handle format: LINEAR, 16000.0 Hz, 16-bit, Mono, LittleEndian, Signed, 32000.0 frame rate, FrameSize=16 bits
    Failed to prefetch: com.sun.media.PlaybackEngine@26e431
    Error: Unable to prefetch com.sun.media.PlaybackEngine@26e431

  • Linux Based Oracle ERP-File Version Check

    hi,
    Anyone can tell how to check the following version of the files in Linux 7.2 ES for ORacle erp 11.5.9
    LoadGraphContext.java
    LoadGraphFetcher.java
    I used java commands but only shows the java version.
    I also need the following files path
    include/wpwors.h
    src/discrete/wpwwwip.lcp

    Manoj,
    Which changes do you see?
    Use tmpfs, change the base address or use bigpages?

Maybe you are looking for

  • Database Inconsistency Nightmare

    As an avid user and supporter of Aperture since it's release, I now have an new issue. I am a pro photojournalist using Aperture every day for all my magazine assignment work and I feel like I know the program very well after 2+ years of heavy daily

  • Data Warehouse using MSSQL - SSIS : Installation best practices

    Hi All,           I am working on a MSSQL - 2008 R2 , based data warehouse building.  The requirement is to read source data from files, put it in stage database and perform data cleansing etc .. and then move the data to data warehouse db .. Now the

  • Documents with billingblocks should not appear in billing due list

    Dear all we have a requirement that in VF04 when i select both delivery related and no docs with billing block it is still showing the documents which have billing block in the sales order header . pls let me know is there any thing i can do to avoid

  • Fireworks CS6 Freezing On Loading Keyboard Shortcuts

    For the past two days, whenever I try to start Adobe Fireworks CS6, the Splash menu freezes on "Initializing Keyboard Shortcuts". I have tried resetting the preferences and the program still freezes. I have uninstalled and reinstalled the program sev

  • Database creation problems

    Help!! I have installed 8i on RH Linux 6.1 and followed the "Friendly" guide steps, it worked perfectly. However when I try to create a database using the Database assistant, I get an error "Oracle Not Logged on" I've reinstalled twice and still have