Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (55)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7401)

  • Proper spelling.

    1er juin 2015, par scottschiller
    Proper spelling.
  • avcodec/h264_refs : Rewrite code to make control flow clearer

    26 mars 2024, par Andreas Rheinhardt
    avcodec/h264_refs : Rewrite code to make control flow clearer
    

    While this change IMO makes the control flow clearer
    for the human reader, it is especially important for
    GCC : It erroneously believes that it is possible to
    enter the SHORT2(UNUSED|LONG) cases without having
    entered the preceding block that initializes pic,
    frame_num, structure and j ; it would emit -Wmaybe-uninitialized
    warnings for these variables if they were not pseudo-
    initialized with av_uninit(). This patch allows to remove
    the latter.

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

    • [DH] libavcodec/h264_refs.c
  • avcodec/mobiclip : Rewrite code to make it clearer

    18 novembre 2021, par Andreas Rheinhardt
    avcodec/mobiclip : Rewrite code to make it clearer
    

    In order to know that the earlier code did not use uninitialized
    values one needs to know that the lowest four bits of each used
    value of pframe_block4x4_coefficients_tab do not vanish identically.
    E.g. Coverity did not get this and warned about it in ticket #1466632.
    Fix this by slightly rewriting the code.

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

    • [DH] libavcodec/mobiclip.c