Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (59)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8431)

  • Loading shared libraries with Gradle 2.2.1

    12 février 2015, par Gabriel Furstenheim

    I’m trying to use a shared library, libavcodec-56.so, in my Android app and I can’t find the way. I’m using Gradle 2.2.1 and Android Studio 1.0. What I have done so far is the following :

    -I built libavcodec-56.so from source code using a NDK toolchain.

    -I copied libavcodec-56.so into src/main/jniLibs/armeabi

    -I’m able to create a .c file in the project and communicate with the java files using private native void nameOfTheNativeMethod()

    -I can load some external libraries like ldLibs "m"

    However, if I try to use #include <libavcodec></libavcodec>avcodec.h> I get the error

    No such file or directory
        #include <libavcodec></libavcodec>avcodec.h>

    My gradle file looks like :

    apply plugin: 'com.android.library'

    android {
       compileSdkVersion 21
       buildToolsVersion "21.1.2"

       defaultConfig {
           minSdkVersion 15
           targetSdkVersion 21
           versionCode 1
           versionName "1.0"
           ndk {
               moduleName "ffmpeg"
               cFlags "-std=c99"  
               ldLibs "log",  "m"
           }
       }

       sourceSets.main {
           jni.srcDirs = ["src/main/jni"];
           //jniLibs.srcDirs = ['src/main/jniLibs'];
       }


       buildTypes {
           release {
               minifyEnabled false
               proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
           }
       }
    }

    dependencies {
       compile fileTree(dir: 'libs', include: ['*.jar'])
       compile 'com.android.support:appcompat-v7:21.0.3'

    }

    Any ideas ?

    Thanks in advance

  • avcodec/libx265 : unbreak build for X265_BUILD >= 213

    5 octobre 2024, par Gyan Doshi
    avcodec/libx265 : unbreak build for X265_BUILD >= 213
    

    Earlier, x265 made an API change to support alpha and
    other multiple layer pictures. We added guards to accommodate
    that in 1f801dfdb5

    They have now reverted that API change in
    https://bitbucket.org/multicoreware/x265_git/commits/78e5b703b1

    Updated our wrapper guards to unbreak build again.

    • [DH] libavcodec/libx265.c
  • avcodec/vc1 : fix check for missing CBPTAB

    20 juin 2018, par Jerome Borsboom
    avcodec/vc1 : fix check for missing CBPTAB
    

    CBPTAB must be present in (non skipped) P and B pictures.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1dec.c