Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (101)

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7147)

  • avcodec/osq : Fix signed integer overflow in update_stats()

    16 juin, par Michael Niedermayer
    avcodec/osq : Fix signed integer overflow in update_stats()
    

    Fixes : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
    Fixes : 410109093/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_OSQ_fuzzer-6550900028276736

    Note, none of the available osq files uses update_stats(), this change may fix or break
    files using coding_mode == 2. The code prior looks wrong though

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/osq.c
  • ffmpeg : Considers AVPixelFormat as Int ?

    16 mars 2014, par jamie_y

    I would like to use a function ff_load_image.

    program.c

    #include "../ffmpeg/libavfilter/lavfutils.h"

    int main ()
    {
     uint8_t* data;

     int linesize, width, height, log_ctx;

     int i = ff_load_image(&amp;data, &amp;linesize, &amp;width, &amp;height, AV_PIX_FMT_RGB24, "blue.jpg", &amp;log_ctx);
    }

    This compiles, but gives a warning.

    program.c: In function &#39;main&#39;:
    program.c:11: warning: passing argument 5 of &#39;ff_load_image&#39; makes pointer from integer without a cast
    ../ffmpeg/libavfilter/lavfutils.h:39: note: expected &#39;enum AVPixelFormat *&#39; but argument is of type &#39;int&#39;

    When I run the program, it segment faults. I can't think of any other way to specify a pixel format. Why would ffmpeg think AV_PIX_FMT_RGB8 is an integer ? It's obviously an AVPixelFormat.

  • avfilter/vf_deshake : use a void * comparator for consistency

    24 octobre 2015, par Ganesh Ajjanagadde
    avfilter/vf_deshake : use a void * comparator for consistency
    

    For generality, qsort uses a comparator whose elements are void *. This
    makes the comparator have such a form, and thus makes the void * cast of
    the comparator pointer useless. Furthermore, this makes the code more
    consistent with other usages of qsort across the codebase.

    Reviewed-by : Henrik Gramner <henrik@gramner.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/vf_deshake.c