Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (62)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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 (...)

Sur d’autres sites (12971)

  • avformat/mov : add support for Immersive Audio Model and Formats in ISOBMFF

    15 février 2024, par James Almer
    avformat/mov : add support for Immersive Audio Model and Formats in ISOBMFF
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] configure
    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • avformat/movenc : add support for Immersive Audio Model and Formats in ISOBMFF

    15 février 2024, par James Almer
    avformat/movenc : add support for Immersive Audio Model and Formats in ISOBMFF
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
  • FFmpeg java.lang.UnsatisfiedLinkError dlopen failed : library "libavutil.so" not found in Vivo model device

    9 février 2024, par sejn

    Facing a lot of crashes in the Android Vivo devices with the above error. Can I restrict this to the Vivo models in Android.

    &#xA;

    I'm using the implementation 'com.arthenica:mobile-ffmpeg-full:4.4'

    &#xA;

    Fatal Exception: java.lang.UnsatisfiedLinkError dlopen failed: library "libavutil.so" not found&#xA;&#xA;init {&#xA;    try{&#xA;        System.loadLibrary("avutil")&#xA;        System.loadLibrary("avcodec")&#xA;        System.loadLibrary("avformat")&#xA;        System.loadLibrary("swscale")&#xA;        System.loadLibrary("avfilter")&#xA;    }&#xA;    catch (e:Exception){&#xA;        Log.i("error","${e.message}")&#xA;    }&#xA;}&#xA;

    &#xA;

    In app/build.gradle

    &#xA;

    &#xA;

    ndk &#xA;abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

    &#xA;

    &#xA;

    Note : If I migrate to the latest version ffmpeg-kit-full:6.0-2

    &#xA;

    Clarifications :

    &#xA;

      &#xA;
    1. Shall I need to add this below in the code as well if I use the FFmpeg-kit
    2. &#xA;

    3. If I did not need to use means, does it make any issues in the app ?.(i.e) if I removed
    4. &#xA;

    5. Shall I need to add any additional loadlibrary in the init ?
    6. &#xA;

    7. Is there any simple fix for the above error for Oppo alone without migrating ?
    8. &#xA;

    9. Shall I need to add these architectures in ndk of my app ?
    10. &#xA;

    &#xA;

    &#xA;

    arm-v7a, arm-v7a-neon, arm64-v8a, x86 and x86_64 architectures

    &#xA;

    &#xA;

     init {&#xA;        try{&#xA;            System.loadLibrary("avutil")&#xA;            System.loadLibrary("avcodec")&#xA;            System.loadLibrary("avformat")&#xA;            System.loadLibrary("swscale")&#xA;            System.loadLibrary("avfilter")&#xA;        }&#xA;        catch (e:Exception){&#xA;            Log.i("error","${e.message}")&#xA;        }&#xA;    }&#xA;

    &#xA;