Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7277)

  • vp8 : change mv_{min,max}.{x,y} type to int

    8 juin 2015, par Andreas Cadhalpun
    vp8 : change mv_min,max.x,y type to int
    

    If one of the dimensions is larger than 8176, s->mb_width or
    s->mb_height is larger than 511, leading to an int16_t overflow of
    s->mv_max.x,y. This then causes av_clip to be called with amin > amax.

    Changing the type to int avoids the overflow and has no negative
    effect, because s->mv_max is only used in clamp_mv for clipping.
    Since mv_max.x,y is positive and mv_min.x,y negative, av_clip can’t
    increase the absolute value. The input to av_clip is an int16_t, and
    thus the output fits into int16_t as well.

    For additional safety, s->mv_min,max.x,y are clipped to int16_t range
    before use.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
  • GStreamer force decodebin2 output type

    6 septembre 2014, par user975326

    I’m trying to write a program in C which replicates the pipeline :

    gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink

    DecodeBin2 has a dynamic pad and I’ve attached a callback to handle its creation. I am unable to link it to ffmpegcolorspace however because the pad capability is always video/quicktime. I would like it to be video/x-raw-yuv or something else which is compatible with ffmpegcolorspace.

    Is this possible to force/select the output type of decodebin2 ?

    Thanks.

    EDIT : Please do not recommend playbin. I’m trying to learn how how to make pipelines.

  • vp9 : fix type of iadst4_1d intermediates.

    4 septembre 2015, par Ronald S. Bultje
    vp9 : fix type of iadst4_1d intermediates.
    

    Fixes integer overflows for extreme coefficient values in 10/12bpp content.

    • [DH] libavcodec/vp9dsp_template.c