Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (82)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12132)

  • libavformat/mov : Elimitate double reading of COVR metadata if MOV_EXPORT_ALL_METADATA...

    14 mai 2014, par Alex Sukhanov
    libavformat/mov : Elimitate double reading of COVR metadata if MOV_EXPORT_ALL_METADATA is enabled
    

    Problem : ffmpeg tries to read COVR atom data twice if MOV_EXPORT_ALL_METADATA is enabled.
    If COVR atom is the last in the stream, a parsing of such file fails.

    Solution : just return immediatelly after mov_read_covr

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c
  • Revision 43be86dbff : vp10 : remove double MV value check. This has virtually no effect on coding effi

    8 septembre 2015, par Ronald S. Bultje

    Changed Paths :
     Modify /vp10/common/mvref_common.c


     Modify /vp10/common/mvref_common.h



    vp10 : remove double MV value check.

    This has virtually no effect on coding efficiency, but it is more
    logical from a theoretical perspective (since it makes no sense to
    me that you would exclude a MV from a list just because it’s sign-
    inversed value is identical to a value already in a list), and it
    also makes the code simpler (it removes a duplicate value check in
    cases where signbias is equal between the two MVs being compared).

    See issue 662.

    Change-Id : I23e607c6de150b9f11d1372fb2868b813c322d37

  • avfilter/vf_showpalette : Fix double-free of AVFilterFormats on error

    7 août 2020, par Andreas Rheinhardt
    avfilter/vf_showpalette : Fix double-free of AVFilterFormats on error
    

    The query_formats function of the showpalette filter tries to allocate
    two lists of formats which on success are attached to more permanent objects
    (AVFilterLinks) for storage afterwards. If attaching a list to an
    AVFilterLink succeeds, the link becomes one (in this case the only one)
    of the owners of the list. Yet if attaching the first list to its link
    succeeds and attaching the second list fails, both lists were manually
    freed, which means that the first link's pointer to the first list
    becomes dangling and there will be a double-free when the first link is
    cleaned up automatically.

    This commit fixes this by removing the custom free code ; this will
    temporarily add a leaking codepath (if attaching a list to a link fails,
    the list will leak), but this will be fixed shortly by making sure that
    an AVFilterFormats without owner will be automatically freed when
    attaching it to an AVFilterLink fails. Notice at most one list leaks
    because as of this commit a new list is only allocated after the old list
    has been successfully attached to a link.

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

    • [DH] libavfilter/vf_showpalette.c