Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (60)

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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5957)

  • avcodec/zmbv : Mark decoder as init-threadsafe

    5 mai 2021, par Andreas Rheinhardt
    avcodec/zmbv : Mark decoder as init-threadsafe
    

    Initializing zlib in the way we do here is threadsafe, see
    https://www.zlib.net/zlib_faq.html#faq21

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/zmbv.c
  • avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure

    13 juin 2021, par Andreas Rheinhardt
    avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure
    

    It does not modify anything ; it only returns a value, so it fulfills
    the requirements for av_pure.
    The deeper rationale behind this change is that this function is called
    quite often inside arguments to FFMIN which may lead to two calls to it ;
    declaring this function as av_pure allows the compiler to optimize the
    second call away.

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

    • [DH] libavfilter/internal.h
  • avcodec/elbg : Mark ELBGContext as being unaliased by using av_restrict

    20 septembre 2021, par Andreas Rheinhardt
    avcodec/elbg : Mark ELBGContext as being unaliased by using av_restrict
    

    This improves performance : For msvideo1, the performance improved by
    4.8% when encoding the sample from the fate-vsynth1-msvideo1 test ;
    when encoding the sample from fate-vsynth1-cinepak, performance
    improved by 2%. The compiler user was GCC 10 and the calls to encode2
    have been timed.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/elbg.c