Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (57)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

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

Sur d’autres sites (8440)

  • seek : Fix crashes in ff_seek_frame_binary if built with latest Clang 14

    18 octobre 2021, par Martin Storsjö
    seek : Fix crashes in ff_seek_frame_binary if built with latest Clang 14
    

    Passing an uninitialized variable as argument to a function is
    undefined behaviour (UB). The compiler can assume that UB does not
    happen.

    Hence, the compiler can assume that the variables are never
    uninitialized when passed as argument, which means that the codepaths
    that initializes them must be taken.

    In ff_seek_frame_binary, this means that the compiler can assume
    that the codepaths that initialize pos_min and pos_max are taken,
    which means that the conditions "if (sti->index_entries)" and
    "if (index >= 0)" can be optimized out.

    Current Clang git versions (upcoming Clang 14) enabled an optimization
    that does this, which broke the current version of this function
    (which intentionally left the variables uninitialized, but silencing
    warnings about being uninitialized). See [1] for discussion on
    the matter.

    [1] https://reviews.llvm.org/D105169#3069555

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/seek.c
  • avcodec/libilbc : support for latest git of libilbc

    19 septembre 2014, par Gianluigi Tiesi
    avcodec/libilbc : support for latest git of libilbc
    

    in the latest git commits of libilbc developers removed WebRtc_xxx typedefs

    This commit uses int types instead,
    it’s safe to apply also for previous versions since
    WebRtc_Word16 was always a typedef of int16_t and
    WebRtc_UWord16 a typedef of uint16_t

    Reviewed-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libilbc.c
  • How to install latest ffmpeg on mac

    18 juin 2024, par Bachalo

    I am using this command

    &#xA;&#xA;

    sudo port install ffmpeg &#x2B;gpl &#x2B;postproc &#x2B;lame &#x2B;theora &#x2B;libogg &#x2B;vorbis &#x2B;xvid &#x2B;x264 &#x2B;a52 &#x2B;faac &#x2B;faad &#x2B;dts &#x2B;nonfree&#xA;

    &#xA;&#xA;

    But the installed version of ffmpeg I get is only 0.7.13.

    &#xA;&#xA;

    I am using MacPorts which may be the issue

    &#xA;&#xA;

    Apparently there is a 1.0 release !&#xA;http://ffmpeg.org/download.html#release_1.0

    &#xA;