Recherche avancée

Médias (91)

Autres articles (93)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • avcodec/libx264 : add support for ROI-based encoding

    10 janvier 2019, par Guo, Yejun
    avcodec/libx264 : add support for ROI-based encoding
    

    This patch just enables the path from ffmpeg to libx264,
    the more encoders can be added later.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavcodec/libx264.c
  • dshow : fixup some COM objects, based on patches from Don Moir

    27 mars 2014, par rogerdpack
    dshow : fixup some COM objects, based on patches from Don Moir
    

    Signed-off-by : rogerdpack <rogerpack2005@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavdevice/dshow_enummediatypes.c
  • FFMPEG - How can I convert a video to an image grid based upon time interval

    23 juillet 2021, par Richard Young

    I'm trying to convert a video into a grid of images. I want to capture frames every n-th second. I've seen frames being captured and compiled into a grid based upon frame indices, like in the code below :

    &#xA;

    ffmpeg -i input -filter_complex \&#xA;"select=&#x27;eq(mod(n/,2))&#x27;,scale=120:-1,tile=layout3x2" \&#xA;-vframes 1 -q:v 2 output.jpg&#xA;

    &#xA;

    Is there any way to do this with the -vf fps filter so that the image capture interval uses time interval rather than frames ? Thanks !

    &#xA;