Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (103)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (5219)

  • configure : fix clang-cl detection

    1er février 2018, par Alexander Bilyak
    configure : fix clang-cl detection
    

    When using clang-cl it expects parameters passed in MSVC-style, so appropriate toolchain should be selected.
    As soon as both clang and clang-cl report themselfs as "clang" with -v option the only chance to detect
    clang-cl is passing - ? option to both which is valid for clang-cl.exe and not for clang.exe.

    Reviewed-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
  • avformat/mov : Correct opus-in-mp4 pre-skip to be uint16_t versus int16_t.

    22 août 2018, par Dale Curtis
    avformat/mov : Correct opus-in-mp4 pre-skip to be uint16_t versus int16_t.
    

    This field is a uint16_t, see docs :
    http://opus-codec.org/docs/opus_in_isobmff.html#4.3.2

    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • avformat/mov : Error on too large stsd entry counts.

    31 août 2018, par Dale Curtis
    avformat/mov : Error on too large stsd entry counts.
    

    Entries are always at least 8 bytes per the parsing code, so if we
    see an impossible entry count avoid massive allocations. This is
    similar to an existing check in mov_read_stsc().

    Since ff_mov_read_stsd_entries() does eof checks, an alternative
    approach could be to clamp the entry count to atom.size / 8.

    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c