Advanced search

Medias (1)

Tag: - Tags -/artwork

Other articles (94)

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • Keeping control of your media in your hands

    13 April 2011, by

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Problèmes fréquents

    10 March 2010, by

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

On other websites (6494)

  • tests/swscale: print performance stats on exit

    25 February, by Niklas Haas
    tests/swscale: print performance stats on exit
    
    • [DH] libswscale/tests/swscale.c
  • FFMPEG JNI wrapper causes Android app exit

    5 December 2013, by user3043703

    I'm writing a JNI wrapper to use FFMPEG as a library in my Android project. I'm mainly using as references the halfninja project (and some forks) and this useful guide. I'm making a lot of personalizations but I got a working version with some additional codecs, the only problem is that, after FFMPEG ends, it causes my application to quit with no errors and I'd like to avoid this (for example to invoke FFMPEG again). Looking at the halfninja wrapper, the line of code exit(ret); from the cmdutils.c file is commented in the function void exit_program(int ret) but if I do the same with the latest (2.1.1) version of FFMPEG it causes me a signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 6f632494 error. My code looks like this:

    void exit_program(int ret)
    {
      if (program_exit)
         program_exit(ret);

      //exit(ret);
     //if I uncomment this the app automatically exits without errors
    }

    I see that both my references are a little old, also refering to a very old release of FFMPEG and it seems that meanwhile the source code changed a lot. I invoke FFMPEG through the JNI wrapper inserted in a new thread in the application code.

    All I'd like to know is: there's a way to avoid the automatic exit of my application after the end of FFMPEG thread?

  • avcodec/vqavideo: check destination size on all exit pathes

    21 December 2013, by Michael Niedermayer
    avcodec/vqavideo: check destination size on all exit pathes
    

    Fixes part of msan_uninit-mem_7f841fe2ab3b_4608_cow2_1.vqa
    Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vqavideo.c