Recherche avancée

Médias (91)

Autres articles (52)

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

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

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

  • How to display live web camera video into video player using ffmpeg

    30 octobre 2013, par Akash Langhani

    I want to use live camera video and play same time in a video player, means record and play parallel, can ffmpeg perform this, if yes then how.

  • FFmpeg command to overlay first video on top of other video in batch file [closed]

    18 septembre 2022, par Ionut Bejinariu

    With this code I'm trying to add a video with a transparent background over another, more precisely a waveform over another mp4 video.

    


    what is wrong in the code below ?
I try it on a batch file, but is not executed..

    


    ffmpeg -y -i test.mp4 -i waveform.mp4 -filter_complex [1]format=rgb24,colorkey=black:0.3:0.2,colorchannelmixer=aa=0.3,setpts=PTS+8/TB[1d]; [0][1d]overlay=enable='between(t,8, 13)'[v1]; -map [v1] -map 0:a -c:a copy -c:v libx264 -preset ultrafast export.mp4




    


    thank you for your gelp

    


  • I have two ffmpeg command one is for Overlay text on video and other is for add picture logo on video, i want to merge them but it's not working

    18 février 2019, par Zeeshan Sheikh

    i want to combine these two commands
    one is for overlay text on video :

    1) ffmpeg -i video.mp4 -vf "movie=logo.png [watermark] ; [in][watermark] overlay=10:10 [out]" -y output.mp4

    2) ffmpeg -i video.mp4 -filter:v drawtext="fontfile=font/arial.ttf:text=’Text’:fontcolor=white@1.0:fontsize=30:y=h/2:x=0:enable=’between(t,6,10)’" -t 10 e :\output.mp4

    i want to use both functionaties into one command. but it’s not working on my side