Recherche avancée

Médias (91)

Autres articles (57)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5193)

  • avformat/flac_picture : Simplify parsing title

    23 août 2021, par Andreas Rheinhardt
    avformat/flac_picture : Simplify parsing title
    

    Don't allocate the buffer for the title ourselves, leave it to
    av_dict_set(). This simplifies freeing.

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

    • [DH] libavformat/flac_picture.c
  • Merge commit 'fa1749dd34c55fb997c97dfc4da9383c9976ab91'

    25 avril 2017, par Clément Bœsch
    Merge commit 'fa1749dd34c55fb997c97dfc4da9383c9976ab91'
    

    * commit 'fa1749dd34c55fb997c97dfc4da9383c9976ab91' :
    vp9 : split superframes in the filtering stage before actual decoding

    This commit is a noop.

    2017-04-24 20:45:04 @ubitux BBB : btw, do you think you can get the bsf thing this week or we should skip it to give you more time and go on with the merges ?
    2017-04-24 20:45:20 @BBB I’m not sure I’ll finish it that soon
    2017-04-24 20:45:26 @BBB I’d skip it and leave it for later
    2017-04-24 20:45:35 @BBB I’ll do it, I promise, but I Can’t guarantee it’ll be done by $date

    Merged-by : Clément Bœsch <u@pkh.me>

    • [DH] doc/libav-merge.txt
  • vsync flag usage in ffmpeg while filtering

    13 octobre 2022, par antortjim

    I am trying to apply a threshold to an input video with ffmpeg, but I observe the following warning emitted for every processed frame

    &#xA;

    [mp4 @ 0x56360181a200] Non-monotonous DTS in output stream 0:0; previous: 182272, current: 182272; changing to 182273. This may result in incorrect timestamps in the output file.&#xA;

    &#xA;

    where the previous and current are always 1 less than the value to which the DTS (Decoding Time Stamp) is changed

    &#xA;

    I have noticed this warning is emitted only if I set -vsync passthrough (which I changed from the original -vsync 0 which is seen in many online examples).

    &#xA;

    # input.mp4 has resolution 790x790&#xA;ffmpeg -vsync passthrough  -i input.mp4  -f lavfi -i color=808080:s=790x790 -f lavfi -i color=black:s=790x790 -f lavfi -i color=white:s=790x790 -filter_complex &#x27;[0:v][1:v][2:v][3:v]threshold&#x27; -an -c:v h264_nvenc threshold.mp4&#xA;

    &#xA;

    Shall I leave the vsync flag set to the default (auto or -1), or is -vsync passthrough essential to guarantee the frames are displayed in the right order ? In that case, how do I handle this warning ? Some other online examples I found of users experiencing this warning are different from mine, because in their case they are concatenating videos (see 1, 2

    &#xA;

    From the documentation on the -vsync flag, at the end, I see :

    &#xA;

    &#xA;

    With -map you can select from which stream the timestamps should be taken. You can leave either video or audio unchanged and sync the remaining stream(s) to the unchanged one

    &#xA;

    &#xA;

    Maybe this warning should be handled with -map ? But I don't know how.

    &#xA;

    Sidenote, I keep getting the deprecation warning asserting me to change -vsync for -fps_mode, however doing so breaks the command.

    &#xA;

    FFPEG Version :

    &#xA;

    commit 28ac2279adb860ea8b90d3073603912bf3eb6a83 from ffmpeg master branch

    &#xA;

    ffmpeg version N-108625-g28ac2279ad Copyright (c) 2000-2022 the FFmpeg developers&#xA;built with gcc 9 (Ubuntu 9.4.0-1ubuntu1~20.04.1)&#xA;configuration: --enable-nonfree --enable-cuda-nvcc --enable-libnpp --enable-gpl --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64 --disable-static --enable-shared&#xA;libavutil      57. 39.101 / 57. 39.101&#xA;libavcodec     59. 50.100 / 59. 50.100&#xA;libavformat    59. 34.101 / 59. 34.101&#xA;libavdevice    59.  8.101 / 59.  8.101&#xA;libavfilter     8. 49.101 /  8. 49.101&#xA;libswscale      6.  8.112 /  6.  8.112&#xA;libswresample   4.  9.100 /  4.  9.100&#xA;libpostproc    56.  7.100 / 56.  7.100&#xA;

    &#xA;

    OS

    &#xA;

    Ubuntu 20.04.4 LTS

    &#xA;