Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (98)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (12655)

  • lavc/pngdec : improve chunk length check

    2 avril 2021, par Anton Khirnov
    lavc/pngdec : improve chunk length check
    

    The length does not cover the chunk type or CRC.

    • [DH] libavcodec/pngdec.c
  • avformat/apngdec : Check fcTL chunk length when reading header

    31 octobre 2020, par Andreas Rheinhardt
    avformat/apngdec : Check fcTL chunk length when reading header
    

    Reading the header terminates when an fcTL chunk is encountered in which
    case read_header returned success without checking the length of said
    chunk. Yet when read_packet processes this chunk, it checks for the
    length to be 26 and errors out otherwise. So do so when reading the header,
    too.

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

    • [DH] libavformat/apngdec.c
  • avformat/matroskadec : Accept more unknown-length elements II

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Accept more unknown-length elements II
    

    Up until now, one last kind of unknown-length element hasn't been
    properly handled : Unknown-length elements that are supposed to be
    skipped, i.e. the level 1 elements that might reside after the
    clusters.

    This commit changes this. To do this, ebml_parse got a mode that
    essentially tries to skip everything except when parsing is needed
    (namely for unknown-length elements for which parsing is necessary
    as they can't be skipped). This mode is selected by using a NULL
    as destination where the parsed data should be written to.
    It is used to parse the level 1 elements in matroska_parse_cluster.

    The syntax list used for parsing must of course include links to
    the syntax of all the master elements that might need to be parsed.
    In other words : Instead of matroska_clusters (which contained every
    level 1 element except clusters as EBML_NONE elements designated to
    be skipped) matroska_segment is needed and used ; matroska_clusters has
    been removed.

    Furthermore, matroska_segment has been reordered so that clusters are at
    the front as this is now the most common case for this list.

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

    • [DH] libavformat/matroskadec.c