Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7247)

  • avcodec/kgv1dec : fix memleak, reintroduce lost decode_flush() call

    17 janvier 2014, par Michael Niedermayer
    avcodec/kgv1dec : fix memleak, reintroduce lost decode_flush() call
    

    fixes regression since 80d44190c4d909e9685d04bcde693da3e2441dfd and 1a0370ad94de094a5ac754e790d4ec8d8d0d9ee7
    this reverts the buggy changes in these 2 commits

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/kgv1dec.c
  • h264 : Fix faulty call to avpriv_request_sample

    22 août 2015, par Luca Barbato
    h264 : Fix faulty call to avpriv_request_sample
    

    Broken in f9ab4fe1f7c1e9d410ca5ee2c9ff8d2892aad068

    • [DBH] libavcodec/h264_sei.c
  • Call libffmpeg.so through command line on Android

    1er décembre 2013, par user3032481

    I google for this github page : https://github.com/vecio/FFmpeg-Android
    And now I had built some latest libffmpeg.so for different versions of arms(ARMv7,vfp,neon,armv6).
    But I can't use these in my Android directly.

    Why I tried to call libffmpeg.so directly instead of jni ?

    Because I found a libffmpeg.so from the internet that I can directly use in my project by java.lang.ProcessBuilder and java.lang.Process, and it doesn't need jni at all.
    You can get this .so file through this link : http://goo.gl/n0Y1YU

    I didn't change any configure parameter in the FFmpeg-Android.sh on the github above.
    I think that these libffmpeg.so files I compiled can't deal with command line(they are just libraries.).
    I don't know how to modify it(Maybe modify the configure parameters).
    Does anyone know ?