Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (75)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

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

  • ffprobe : add pixel format chroma sub-sampling output

    15 septembre 2014, par Tobias Rapp
    ffprobe : add pixel format chroma sub-sampling output
    

    Adds output of chroma sub-sampling information to
    ffprobe -show_pixel_formats option.

    Note : This patch just prints the "raw" log2_charoma_w/h values instead
    of the previously suggested mapping into a chroma sub-sampling pattern
    string like "4:2:2".

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

    • [DH] doc/ffprobe.xsd
    • [DH] ffprobe.c
  • avformat/webmdashenc : Avoid allocations, fix memleak

    15 juillet 2020, par Andreas Rheinhardt
    avformat/webmdashenc : Avoid allocations, fix memleak
    

    When using the WebM DASH Manifest muxer, every stream of each adaptation
    set has to contain a metadata entry containing the filename of the
    source file. In case of live stream manifests, said filename has to
    conform to a pattern of
    <file_description>_<representation_id>.<extension>. These pieces are
    used to create the other strings that are actually output. Up until now,
    these other strings would be allocated, used once and then freed
    directly after usage. This commit changes this : The function that
    allocated and assembled these strings now returns pointers to the '_'
    and '.' delimiters and so that the caller can easily pick substrings
    from it without needing to copy the string.

    Avoiding allocations also fixes a memleak : One of the allocated strings
    would leak upon a subsequent allocation failure.

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

    • [DH] libavformat/webmdashenc.c
  • tests/swscale : constrain reference SSIM for low bit depth formats

    4 mars, par Niklas Haas
    tests/swscale : constrain reference SSIM for low bit depth formats
    

    Sometimes, the reference SSIM is significantly higher than the
    SSIM level expected for the test. This is the case when the source format
    has a much lower bit depth than the destination format. In this case, the fact
    that legacy swscale does not accurately preserve the source dither pattern
    gives it an unfair advantage in a direct comparison, leading to false
    positives.

    For example, conversion like rgb4 -> rgb565 should be lossless, but swscale
    low passes / downscales the input chroma, throwing away massive amounts of
    detail. This gives it a higher SSIM score since the lowpassed result removes
    some of the dither noise that was present in the source.

    • [DH] libswscale/tests/swscale.c