Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (95)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7096)

  • Encoder/Decoder PCM to AMR Android

    6 novembre 2017, par ElHacker

    I’ve been looking for a while now for any java library that allows me to encode and decode a PCM-AMR audio stream that is sent through a TCP socket connection. Without having to use Android’s JNI.

    Is there anything that can help me ?

    In the worst case scenario. How can I do it using any C++ library with JNI ? (any reference of how to use ffmpeg with JNI will be appreciated)

    Hope you can help me.

  • Encoder/Decoder PCM to AMR Android

    2 mars 2013, par Syred

    I've been looking for a while now for any java library that allows me to encode and decode a PCM-AMR audio stream that is sent through a TCP socket connection. Without having to use Android's JNI.

    Is there anything that can help me ?

    In the worst case scenario. How can I do it using any C++ library with JNI ? (any reference of how to use ffmpeg with JNI will be appreciated)

    Hope you can help me.

  • java.lang.UnsatisfiedLinkError : com.android.tools.fd.runtime.IncrementalClassLoader

    16 novembre 2016, par Macdroid Solution

    I have tried to implement Android-FFmpeg-Images-Video android studio project example from
    reference link.

    When I try to run the android application then here it will give error

    java.lang.UnsatisfiedLinkError : com.android.tools.fd.runtime. IncrementalClassLoader$DelegateClassLoader nativeLibraryDirectories=[/data/data/com.catcry.ffmpeg/lib, /vendor/lib,/system/lib]]] couldn’t find "libffmpeg-jni.so"

    static {
       System.loadLibrary("ffmpeg");
       System.loadLibrary("ffmpeg-jni");
    }

    This is my build.gradle

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0"

    defaultConfig {
       applicationId "com.example.ffmpeg"
       minSdkVersion 14
       targetSdkVersion 23
       multiDexEnabled true
    }

    buildTypes {
       release {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
       }
    }
    sourceSets {
       main {
           res.srcDirs = ['src/main/res']
           jniLibs.srcDirs = ['src/main/jniLibs']
           jni.srcDirs = [] // This prevents the auto generation of Android.mk
       }
    }
    }

    dependencies {
    compile 'com.android.support:support-v4:23.0.0'
    compile project(':ffmpeg4android_os')
    compile 'com.android.support:multidex:1.0.1'
    }

    This is My Directory Structure

    Dir