Recherche avancée

Médias (91)

Autres articles (90)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9619)

  • How can I resize an overlay image with ffmpeg ?

    28 novembre 2020, par Andrei Dascalu

    I am trying to add an overlay to a video using the following command

    


    ffmpeg -y -i "$videoPath" -i "$overlayPath" -filter_complex "[0:v] [1:v] overlay=$overlayPosition" -pix_fmt yuv420p -c:a copy "$outputPath" 


    


    However, I would like to be able to resize the overlay I am about to apply to some arbitrary resolution (no care for keeping proportions). However, although I followed a couple of similar solutions from SO (like FFMPEG - How to resize an image overlay ?), I am not quite sute about the meaning of the parameters or what I need to add it in my case.

    


    I would need to add something like (?)

    


    [1:v]scale=360:360[z] [1:v]overlay=$overlayPosition[z]


    


    This doesn't seem to work so I'm not sure what I should be aiming for.

    


    I would appreciate any assistance, perhaps with some explanation.

    


    Thanks !

    


  • First image not showing image to video using ffmpeg

    3 octobre 2014, par death_relic0

    I am very new to ffmpeg and trying to convert a series of images to a video.

    The command I am using (copied/modified from a tutorial)

    ffmpeg -framerate 1/5 -start_number 1 -i dog%01d.jpg -c:v libx264 -r 30 -pix_fmt rgb24 dog.mp4

    Basically, I have 4 images labelled dog1.jpg, dog2.jpg, dog3.jpg and dog4.jpg.

    The problem is the output video I get has image starting at "dog2.jpg" and ending at "dog4.jpg" meaning that it is missing the first image in the sequence (i.e dog1.jpg).

    I tried with different image combinations and the same behavior happened, the resulting video never had the first image in the sequence.

    Any ideas ?

  • ffmpeg - scrolling text with specified boundaries and cut video when text ends

    19 février 2017, par Elma Paul

    Having this working ffmpeg filter with overlayed scrolling text

    f -i text_bg.mp4 -vf "drawtext=enable:fontsize=200:fontcolor=White:fontfile='ARIALN.TTF':text='asdfhlajsdh LKFJAHSDFH':x=-(mod(8*n\,w+tw)-tw):y=h/2-th/2" outtt.mp4 -y

    I have two questions :
    1.) How can I set specified boundaries for drawtext ? Just fix positions where the text will dissapear. Like here in picture
    scrolling text with specified boundaries example
    2.) How is it possible to cut the video(specify time) according to the text length.Meaning that the video will finish after ends the text line +plus one second ?