Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (59)

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

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4546)

  • ffmpeg : count packets when queued

    2 mai 2017, par Muhammad Faiz
    ffmpeg : count packets when queued
    

    Because write_packet() fakely writes packets to muxer by queueing
    them when muxer hasn't been initialized, it should also increment
    frame_number fakely.
    This is required because code in do_streamcopy() rely on
    frame_number.

    Should fix Ticket6227

    Reviewed-by : James Almer <jamrial@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] ffmpeg.c
  • avcodec : Document that init_static_data() is not intended for time consuming operations.

    6 février 2018, par Michael Niedermayer
    avcodec : Document that init_static_data() is not intended for time consuming operations.
    

    Reviewed-by : Muhammad Faiz <mfcc64@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/avcodec.h
  • avformat/avio : Remove no-op code in url_find_protocol().

    7 juillet 2017, par Wan-Teh Chang
    avformat/avio : Remove no-op code in url_find_protocol().
    

    In url_find_protocol(), proto_str is either "file" or a string
    consisting of only the characters in URL_SCHEME_CHARS, which does not
    include ','. Therefore the strchr(proto_str, ',') call always returns
    NULL.

    Note : The code was added in commit
    6161c41817f6e53abb3021d67ca0f19def682718.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavformat/avio.c