Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (85)

  • Les images

    15 mai 2013
  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (8340)

  • lavf : Do not list mov-only codecs in riff.c.

    13 mars 2015, par Carl Eugen Hoyos
    lavf : Do not list mov-only codecs in riff.c.
    

    Instead check for all mov code-points when demuxing avi
    and print a warning if a video codec is found like this.
    Fixes a regression similar to the one described in ticket #4307.

    • [DH] libavformat/avidec.c
    • [DH] libavformat/riff.c
  • fftools/cmdutils : Atomically add elements to list of pointers, fix crash

    3 décembre 2021, par Andreas Rheinhardt
    fftools/cmdutils : Atomically add elements to list of pointers, fix crash
    

    Currently, adding a (separately allocated) element to a list of pointers
    works by first reallocating the array of pointers and (on success)
    incrementing its size and only then allocating the new element.
    If the latter allocation fails, the size is inconsistent, i.e.
    array[nb_array_elems - 1] is NULL. Our cleanup code crashes in such
    scenarios.

    Fix this by adding an auxiliary function that atomically allocates
    and adds a new element to a list of pointers.

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

    • [DH] fftools/cmdutils.c
    • [DH] fftools/cmdutils.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_opt.c
  • avformat/utils : functions that add entries should not destroy the whole list on failure

    11 septembre 2013, par Michael Niedermayer
    avformat/utils : functions that add entries should not destroy the whole list on failure
    

    The caller does not expect this, and in case of adding new streams would then
    not even be able to deallocate them anymore.

    This reverts a hunk from "avformat : Use av_reallocp_array() where suitable"

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

    • [DH] libavformat/utils.c