Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (38)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (7773)

  • fftools/ffmpeg : report new streams from the input thread

    21 mars 2022, par Anton Khirnov
    fftools/ffmpeg : report new streams from the input thread
    

    This avoids a potential race with the demuxer adding new streams. It is
    also more efficient, since we no longer do inter-thread transfers of
    packets that will be just discarded.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg_demux.c
  • avcodec/wavpack : Constify slice threads' ptr to main context

    23 juillet 2022, par Andreas Rheinhardt
    avcodec/wavpack : Constify slice threads' ptr to main context
    

    Modifying the main context from a slice thread is (usually) a data race,
    so it must not happen. So only use a pointer to const to access
    the main context.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/wavpack.c
  • avcodec/vp8 : Constify slice threads' ptr to main context

    23 juillet 2022, par Andreas Rheinhardt
    avcodec/vp8 : Constify slice threads' ptr to main context
    

    Modifying the main context from a slice thread is (usually)
    a data race, so it must not happen. So only use a pointer to const
    to access the main context.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vp8.c