Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

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/src_movie : Remove unneeded resetting of AVPacket

    10 septembre 2020, par Andreas Rheinhardt
    avfilter/src_movie : Remove unneeded resetting of AVPacket
    

    av_read_frame() already returns clean packets on error.

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

    • [DH] libavfilter/src_movie.c
  • avfilter/formats : Remove pointless checks

    11 septembre 2020, par Andreas Rheinhardt
    avfilter/formats : Remove pointless checks
    

    ff_formats_ref() takes a pointer to an AVFilterFormats and a pointer to
    a pointer to an AVFilterFormats as arguments and adds the latter as an
    owner to the list pointed to by the former ; the latter is hereby always
    the address of a list contained in an AVFilterFormatsConfig and can
    therefore not be NULL. So remove the check for whether it is NULL ; also
    do the same for ff_channel_layouts_ref().

    Also do the same for the unref functions where argument is never NULL
    because it is always the address of an existing lvalue.

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

    • [DH] libavfilter/formats.c
  • avfilter/formats : Don't typedef structure a second time

    11 septembre 2020, par Andreas Rheinhardt
    avfilter/formats : Don't typedef structure a second time
    

    Before commit 2f76476549a01ae2c4ec2a440e4b14c5aba64869, avfilter.h
    contained no typedef for AVFilterChannelLayouts ; all references to it
    were done using its struct tag. formats.h meanwhile contained the
    definition of the struct and a typedef for it. Said commit now added a
    typedef in avfilter.h, too, bringing it in line with AVFilterFormats ;
    yet this means that there are two typedefs for AVFilterChannelLayouts
    (in contrast to AVFilterFormats which is only typedef'ed in avfilter.h).

    The problem is that older versions of GCC don't like this and error out :
    http://fate.ffmpeg.org/history.cgi?slot=x86_64-openbsd5.6-gcc4.2-conf2
    is one of the FATE boxes that now fail to compile. So just remove the
    typedef in formats.h.

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

    • [DH] libavfilter/formats.h