Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 ;

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

  • lavu/opt : switch AV_OPT flags to shift-based formatting

    21 septembre 2015, par Rodger Combs
    lavu/opt : switch AV_OPT flags to shift-based formatting
    
    • [DH] libavutil/opt.h
  • avcodec/tiff : remove byte based bpp special case

    20 octobre 2013, par Michael Niedermayer
    avcodec/tiff : remove byte based bpp special case
    

    This case does not work as off is uninitialized and it should be
    handled fine by the generic code below

    Fixes CID1108608

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

    • [DH] libavcodec/tiff.c
  • How to rescale image based on long side with ffmpeg ?

    10 février 2024, par mj2

    I want to rescale an image based on the long side of the image.

    &#xA;

    If I have a landscape format image e.g. 4000x3000px then this is the right command :

    &#xA;

    ffmpeg -i input.jpg -vf scale=1500:-1 scaled.jpg

    &#xA;

    If I have an upright format image e.g. 3000x4000px then this is the right command :

    &#xA;

    ffmpeg -i input.jpg -vf scale=-1:1500 scaled.jpg

    &#xA;

    Can I do this in one command ? Another option is to check the format manually with ffmpeg but I don't know how.

    &#xA;