Advanced search

Medias (91)

Other articles (25)

  • Other interesting software

    13 April 2011, by

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

  • Submit bugs and patches

    13 April 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information: the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 April 2011, by

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

On other websites (6442)

  • avformat/mov: Init ref_sc / ref_st to NULL

    30 March 2017, by Michael Niedermayer
    avformat/mov: Init ref_sc / ref_st to NULL
    

    This is more robust in case some change or corner case causes them to be
    dereferenced before being set

    Fixes CID1396274, CID1396275

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • libavformat: Allow calling av_write_trailer with a NULL AVIOContext

    19 December 2014, by Martin Storsjö
    libavformat: Allow calling av_write_trailer with a NULL AVIOContext
    

    Signed-off-by: Martin Storsjö <martin@martin.st>

    • [DH] libavformat/mux.c
  • avformat/utils: Fix undefined NULL + 0

    14 February 2021, by Andreas Rheinhardt
    avformat/utils: Fix undefined NULL + 0
    

    This is undefined behaviour in C, so use data = len ? data + len : data
    instead of data += len. GCC optimizes the branch away in this case;
    Clang unfortunately doesn't.

    Fixes ticket #8592.

    Reviewed-by: Paul B Mahol <onemda@gmail.com>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/utils.c