Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (57)

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

  • Select FrameSize for video with logo in FFmpeg

    24 juin 2016, par Ahmad Ali Mukashaty

    I’m using this command to stream video with 1920*1080 frame size :

    ffmpeg -re -i test.mp4 -vf scale=1920*1080 -f mpegts udp://127.0.0.1:port

    but when I want to stream images with video like this :

    ffmpeg -re -i test.mp4 -vf scale=1920*1080 -i logo.png -ignore_loop 0 -i
    test6.gif -filter_complex "[0][1]overlay=10:10[a];[a][2]overlay=90:90" -f
    mpegts udp://127.0.0.1:port

    the command line display this error : here

    How can I choose frame size when I stream video with image ?

  • Adding gif image every X second with looping Y times in ffmpeg

    28 juin 2016, par Ahmad Ali Mukashaty

    I want to stream video with gif image (myimage.gif) but I want to display it every X minute (every 10 minutes) and during this time I want to make it loops Y time and then disappear (fade out).

    I want to make this every 10 minutes until video finishes
    how can I do it ?

    this is my command

    ffmpeg -re -i test.mp4 -i logo.png -i myimage.gif -filter_complex
    "[0][1]overlay=0:0[a];[a][2]overlay=0:H-90,scale=1920:1080" -f mpegts
    udp://127.0.0.1:port
  • Display image every X second and during Y second in ffmpeg

    29 juin 2016, par Ahmad Ali Mukashaty

    I want to stream video with gif image (myimage.gif) but I want to display it every X minute (every 10 minutes) and during this time I want to make it loops Y time and then disappear (fade out).

    or

    dispaly myimage.gif every X minute and still appear during Y minute and then disappear (disappear after 5 minute for example )

    I want to make this every 10 minutes until video finishes
    how can I do it ?

    ffmpeg -re -i test.mp4 -i logo.png -i myimage.gif -filter_complex
    "[0][1]overlay=0:0[a];[a][2]overlay=0:H-90,scale=1920:1080" -f mpegts
    udp://127.0.0.1:port