Recherche avancée

Médias (91)

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (13747)

  • avformat/dashdec : Remove dead code

    18 septembre 2020, par Andreas Rheinhardt
    avformat/dashdec : Remove dead code
    

    The code in question seems to have been copied from about 70 lines
    above ; yet the code here is only executed if some of the variables
    (namely representation_segmenttemplate_node and fragment_template_node)
    are NULL, so it makes no sense to check them for a child element.

    Also remove a redundant resetting of a pointer to an AVFormatContext
    after avformat_close_input() (which already sets the pointer to NULL).

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/dashdec.c
  • ffmpeg : remove dead code out of the video filter loop

    24 octobre 2016, par Clément Bœsch
    ffmpeg : remove dead code out of the video filter loop
    

    It makes no sense for this code to be inside the video filter loop, and
    the frame sample aspect ratio is even set unconditionally a few lines
    above.

    • [DH] ffmpeg.c
  • avcodec/encode : Remove dead deprecated check

    18 septembre 2022, par Andreas Rheinhardt
    avcodec/encode : Remove dead deprecated check
    

    The wrapper for the legacy channel layout API already sets
    AVCodecContext.channels based upon AVCodecContext.channel_layout
    if the latter is set while the former is unset.

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

    • [DH] libavcodec/encode.c