Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (102)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (13774)

  • avcodec/movtextdec : Redo TextSampleModifierBox size checks

    8 décembre 2021, par Andreas Rheinhardt
    avcodec/movtextdec : Redo TextSampleModifierBox size checks
    

    The current checks just check whether the boxes fit into the remaining
    size of the packet instead of whether they actually fit into the box
    size. This has been changed ; part of this change is to pass the size of
    the box (minus the box header) as parameter instead of a pointer to
    the AVPacket by which the box parsing function is supposed to
    recalculate whether enough data is available.

    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/movtextdec.c
  • avformat/matroskaenc : Redo handling of FlagDefault

    18 janvier 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Redo handling of FlagDefault
    

    Up until now, the Matroska muxer would mark a track as default if it had
    the disposition AV_DISPOSITION_DEFAULT or if there was no track with
    AV_DISPOSITION_DEFAULT set ; in the latter case even more than one track
    of a kind (audio, video, subtitles) was marked as default which is not
    sensible.

    This commit changes the logic used to mark tracks as default. There are
    now three modes for this :
    a) In the "infer" mode the first track of every type (audio, video,
    subtitles) with default disposition set will be marked as default ; if
    there is no such track (for a given type), then the first track of this
    type (if existing) will be marked as default. This behaviour is inspired
    by mkvmerge. It ensures that the default flags will be set in a sensible
    way even if the input comes from containers that lack the concept of
    default flags. This mode is the default mode.
    b) The "infer_no_subs" mode is similar to the "infer" mode ; the
    difference is that if no subtitle track with default disposition exists,
    no subtitle track will be marked as default at all.
    c) The "passthrough" mode : Here the track will be marked as default if
    and only the corresponding input stream had disposition default.

    This fixes ticket #8173 (the passthrough mode is ideal for this) as
    well as ticket #8416 (the "infer_no_subs" mode leads to the desired
    output).

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

    • [DH] doc/muxers.texi
    • [DH] libavformat/matroskaenc.c
    • [DH] tests/ref/fate/matroska-flac-extradata-update
  • avformat/av1dec : Redo flushing of bsf

    14 novembre 2019, par Andreas Rheinhardt
    avformat/av1dec : Redo flushing of bsf
    

    The current approach has two different calls to av_bsf_send_packet() :
    A normal one, sending a packet ; and an extraordinary one just for
    flushing. These can be unified into one by making use of the newly
    documented fact that av_bsf_send_packet() allows to signal flushing via
    empty packets (i.e. packets without data and side-data).

    This also fixes CID 1455685 which resulted from the fact that the call
    for flushing was not checked given that it couldn't fail.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/av1dec.c