Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • Submit bugs and patches

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5869)

  • lavc/srtenc : do not emit any subrip tags with text codec

    1er mai 2016, par Clément Bœsch
    lavc/srtenc : do not emit any subrip tags with text codec
    

    Fixes presence of opening tags when running
    ffmpeg -i x.ass -c text x.srt

    Reported-by : Jean First <jeanfirst@gmail.com>

    • [DH] libavcodec/srtenc.c
  • lavfi/delogo : Fix sign extension issue

    13 juillet 2013, par Jean Delvare
    lavfi/delogo : Fix sign extension issue
    

    Coverity complains about a possible sign extension issue in
    apply_delogo(). While it is extremely unlikely to happen, it is easy
    to fix so let’s just do that. Using unsigned variables even makes the
    binary code smaller.

    Fixes Coverity CID 1046439.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_delogo.c
  • lavfi/delogo : don’t recompute the same difference again and again

    5 juillet 2013, par Jean Delvare
    lavfi/delogo : don’t recompute the same difference again and again
    

    The top left hand corner pixel coordinates are already stored in
    logo_x1 and logo_y1 so don’t recompute each of them 6 times for every
    iteration.

    This is a simple code optimization, result is obviously the same. The
    performance gain is small (about 2% in my tests) but still good to
    have, and the new code is clearer.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Reviewed-by ; Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_delogo.c