Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (49)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (6479)

  • avfilter/af_aformat : Add uninit function

    9 août 2020, par Andreas Rheinhardt
    avfilter/af_aformat : Add uninit function
    

    Fixes memleaks in case init fails (e.g. because of invalid parameters
    like 'aformat=sample_fmts=s16:cl=wtf') or also if query_formats is never
    called.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_aformat.c
  • avfilter : Remove redundant ff_formats/channel_layouts_unref()

    7 août 2020, par Andreas Rheinhardt
    avfilter : Remove redundant ff_formats/channel_layouts_unref()
    

    ff_add_format() and ff_add_channel_layout() already unref the list upon
    error.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_aformat.c
    • [DH] libavfilter/vf_shuffleplanes.c
    • [DH] libavfilter/vf_weave.c
  • avfilter/vf_hwdownload : Fix leak of formats list upon error

    7 août 2020, par Andreas Rheinhardt
    avfilter/vf_hwdownload : Fix leak of formats list upon error
    

    If adding the list of input formats to its AVFilterLink fails, the list
    of output formats (which has not been attached to permanent storage yet)
    leaks. This has been fixed by not creating the lists of in- and output
    formats simultaneously. Instead creating said lists is relegated to
    ff_formats_pixdesc_filter() (this also avoids the reallocations implicit
    in using ff_add_format()) and the second list is only created after (and
    if) the first list has been permanently attached to its AVFilterLink.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_hwdownload.c