Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (54)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (3811)

  • webp : ensure that each transform is only used once

    5 mars 2015, par Andreas Cadhalpun
    webp : ensure that each transform is only used once
    

    According to the WebP Lossless Bitstream Specification
    "each transform is allowed to be used only once".

    If a transform is more than once this can lead to memory
    corruption.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavcodec/webp.c
  • ffmpeg scaling and padding error

    30 novembre 2016, par jsurf

    I am trying to scale a video of any dimension to be 720x720, and then centered on a padded background of 1280x720.

    ffmpeg -y -i test.mp4  -vf "scale=-1:720,pad=width=1280:height=720:x=280" -c:a copy processed/test.mp4

    This command gives the error : "Warning : data is not aligned ! This can lead to a speedloss", although the video does scale and center properly.

    The same command without the x coordinate of 280px gets rid of the error, but then the video is not centered properly : ffmpeg -y -i test.mp4  -vf "scale=-1:720,pad=width=1280:height=720" -c:a copy processed/test.mp4

    Is there another way I can center the video and get rid of the error ?

  • avformat/mxfdec : Fix memleak upon repeating tags

    20 juillet 2020, par Andreas Rheinhardt
    avformat/mxfdec : Fix memleak upon repeating tags
    

    When parsing MXF encountering some tags leads to allocations. And when
    these tags were encountered repeatedly, this could lead to memleaks,
    because the pointer to the old data got simply overwritten with a
    pointer to the new data (or to NULL on allocation failure). This has
    been fixed.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mxfdec.c