Recherche avancée

Médias (91)

Autres articles (73)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (8897)

  • lavfi/scale : Add sub-options for in_color_matrix/out_color_matrix

    5 juillet 2019, par Jun Zhao
    lavfi/scale : Add sub-options for in_color_matrix/out_color_matrix
    

    Add sub-options for in_color_matrix/out_color_matrix

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavfilter/vf_scale.c
  • FFmpeg - rotate & scale content of video

    29 mai 2019, par datayeah

    I have a portrait mp4 file (720x1280) and want it to rotate its content faster and faster while zooming the content out. The best-case would be to zoom to 1x1 pixel while keeping the resulting video 720x1280. What i already got is the rotation part :

    ffmpeg -i input.mp4 -filter_complex "[0:v] rotate=PI/3+2*PI*t/(2/t) [out]"  -map "[out]" -y -c:v libx264 rotating.mp4

    My problem now is, that zooming out less than 1.0 seems not to be possible, but i have to start at a scale of 1.0 and scale down to 0.1 or something near that. I think i have to add some padding while scaling, but i don’t get how to accomplish it. Maybe someone can give me some hint ?

  • using ffmpeg scale filter , how to scale a sequence of images with dynamic sizes

    3 avril 2019, par user651177

    as the title asked , I am looking for a method that scales a sequence of images with dynamic sizes ,
    say i have a video stream containing tens or hundreds frames , I want to scale these frames in increasing or decreasing sizes , for example size of frame-1 is 1.25 times of size of frame-0, and size of frame-2 is 1.25 times of size of frame-1, and so on , but the scale filter seems to have no a frame-n parameter in the scaling expression , how can i do this ,

    please help