Recherche avancée

Médias (91)

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les sons

    15 mai 2013, par
  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5129)

  • avcodec/dca_core : always limit frame size to data size

    9 octobre 2017, par foo86
    avcodec/dca_core : always limit frame size to data size
    

    Silences pointless error message when decoding DTS-in-WAV stream with
    excessive frame size stored in header.

    • [DH] libavcodec/dca_core.c
  • avformat/mpegts : print packet size warning only if new size differs from old

    18 août 2013, par Michael Niedermayer
    avformat/mpegts : print packet size warning only if new size differs from old
    

    No case is known to have triggered this, but its more correct to check that the
    new size differs.

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

    • [DH] libavformat/mpegts.c
  • How to set the same size for the input color as the video size ?

    3 janvier 2021, par Yaroslav Akulov

    I have many videos with different widths and heights on which I need to overlay a random color. And I don't know how to set the same size for the color input as the size of each of all of my videos...

    &#xA;

    The exact color size only works for the video with the same size. But when the queue comes to another video with different width and height the error popping up.

    &#xA;

    enter image description here

    &#xA;

    for %%i in (*.mp4) do ffmpeg /&#xA;-i "%%i" -f lavfi -i "color=random@1:s=624x1110" /&#xA;-hide_banner -y -c:v libx264 -preset slow /&#xA;-filter_complex /&#xA;"[0:v]setsar=sar=1/1[ckout]; /&#xA; [ckout][1:v]blend=shortest=1:all_mode=overlay:all_opacity=0.05[out]" -map "[out]" "output/%%~ni.mp4"&#xA;

    &#xA;