Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (10483)

  • Revision 35729 : Déplacer les CSS qui concernent l’espace privé dans une feuille de style ...

    2 mars 2010, par arno@… — Log

    Déplacer les CSS qui concernent l’espace privé dans une feuille de style séparée.

  • Revision 35728 : Deplacer forcer_hauteur dans un fichier séparé, appelé uniquement dans ...

    2 mars 2010, par arno@… — Log

    Deplacer forcer_hauteur dans un fichier séparé, appelé uniquement dans l’espace privé.

  • How to use FFSampledSP to play gsm files

    25 novembre 2014, par QuentinTanioartino

    I am trying to use FFSampledSP on MacOSX but I couldn’t make it working

    These are the steps I executed :

    1. I downloader the jar here :
    2. I added the jar into my build path using eclipse
    3. I downloaded the native library ffsampledsp-universal-0.9.9.jnilib here
    4. I renamed the library to libffsampledsp.jnilib
    5. I put the library into the java.library.path

    Then I tried to play the file with the java audio player developed but without any success

    It fails on

    AudioInputStream pcmStream = AudioSystem.getAudioInputStream(encodedFile);

    This is the error :

    java.lang.UnsatisfiedLinkError: no ffsampledsp-x86_64-darwin in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1857)
    at java.lang.Runtime.loadLibrary0(Runtime.java:870)
    at java.lang.System.loadLibrary(System.java:1119)
    at com.tagtraum.ffsampledsp.FFNativeLibraryLoader.loadLibrary(FFNativeLibraryLoader.java:107)
    at com.tagtraum.ffsampledsp.FFNativeLibraryLoader.loadLibrary(FFNativeLibraryLoader.java:89)
    at com.tagtraum.ffsampledsp.FFNativeLibraryLoader.loadLibrary(FFNativeLibraryLoader.java:73)
    at com.tagtraum.ffsampledsp.FFAudioFileReader.<clinit>(FFAudioFileReader.java:51)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
    at java.lang.Class.newInstance(Class.java:438)
    at java.util.ServiceLoader$LazyIterator.nextService(ServiceLoader.java:380)
    at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:404)
    at java.util.ServiceLoader$1.next(ServiceLoader.java:480)
    at com.sun.media.sound.JSSecurityManager.getProviders(JSSecurityManager.java:216)
    at com.sun.media.sound.JDK13Services.getProviders(JDK13Services.java:107)
    at javax.sound.sampled.AudioSystem.getProviders(AudioSystem.java:1631)
    at javax.sound.sampled.AudioSystem.getAudioFileReaders(AudioSystem.java:1406)
    at javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:1175)
    at com.audioplayer.AudioPlayer.load(AudioPlayer.java:47)
    at com.view.PlayerView$2.run(PlayerView.java:375)
    at java.lang.Thread.run(Thread.java:745)
    Nov 25, 2014 9:20:14 AM com.tagtraum.ffsampledsp.FFNativeLibraryLoader loadLibrary
    SEVERE: Failed to load native library 'ffsampledsp'. Please check your library path. FFSampledSP        will be dysfunctional.
    </clinit>

    Apparently it does not find the ffsampledsp-x86_64-darwin library

    Therefore I tried to import it directly using the following but still without any result

    static
    {
       try
       {
           System.load("/Users/server/Desktop/libffsampledsp.jnilib");
       }
       catch (UnsatisfiedLinkError e)
       {
         System.err.println("Native code library failed to load.\n" + e);
         System.exit(1);
       }
    }

    Do you know where the issue is ?