Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (9009)

  • What is the scaling algorithm of the FFmpeg scale filter ?

    7 août 2021, par Atrin

    I have upscaled and downscaled an image with following command.

    


    ffmpeg -s:v 1280:720 -r 25 -i input.yuv -vf scale=1920x1080 -c:v rawvideo -pix_fmt yuv420p out.yuv

    


    I'm wondering what kind of scaling algorithm is used to do down scaling (bilinear, bicubic,...) ?

    


    and how can I change the filter or add it if there is no filter in this command ?

    


  • Getting an error 'too many inputs specified for the "scale" filter' in ffmpeg

    15 septembre 2021, par Code Max

    I'm trying to add watermarks to multiple images using ffmpeg. It works good in the beginning but when I try to change the opacity of the watermark it shows the error as :

    


    


    [AVFilterGraph @ 0000019b2a655340] Too many inputs specified for the
"scale" filter. Error initializing complex filters. Invalid argument

    


    


    The used code :

    


    for %%a in ("*.jpg") do ffmpeg -i "%%a" -i wm.png -filter_complex "[1]lut=a=val*0.3[a];[0][a][1]scale=iw*0.50:-1[wm];[0][wm]overlay=0:0" -preset ultrafast "post\%%~na.jpg"


    


  • Scale image overlay over the time with ffmpeg

    9 mai, par Nazarii Kahaniak

    I have an overlay image and background video. I want to make the overlay 3 times bigger when 10 seconds of video pass, the scaling animation should take 1 second. Is it possible to do something like this with ffmpeg ?