Recherche avancée

Médias (91)

Autres articles (56)

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

  • I need to convert other video extensions to mp4 in java

    3 août 2018, par atif sesu

    First i found a library. It’s ffmpeg. But i don’t know how can i include my project. I really tried. Can someone show me how to do it ?

  • FFmpeg move overlay from one pixel coordinate to another

    30 janvier, par occvtech

    I'm trying to write a command within FFmpeg that will first overlay one video stream on top of another one. Then I want the overlayed video to move from one pixel coordinate at a known time, and end at another pixel coordinate at a later time.

    



    I'm comfortable with the basics of the -filter_complex, but I cannot figure out how to apply any arithmetic expressions - like the one's referenced here : https://www.ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation

    



    Here's an example of something I'd like to accomplish.

    



    ffmpeg -i [INPUT1] -i [INPUT2] -filter_complex "[0:v][1:v]overlay=shortest=1:x=720:y=0:enable='between(t,10,20)'[overlay];...


    



    In this example the overlay is stationary at pixel coordinate 720x0 from the 10th second to the 20th second.

    



    However, Id like to have it move to a new location in a linear fashion and end at a different pixel coordinate.

    



    For example, during that 10 second overlay, I'd like to have it start at 720x0, but then end at 1000x100.

    



    Is this possible ?

    


  • FFmpeg move overlay from one pixel coordinate to another

    22 mai 2015, par occvtech

    I’m trying to write a command within FFmpeg that will first overlay one video stream on top of another one. Then I want the overlayed video to move from one pixel coordinate at a known time, and end at another pixel coordinate at a later time.

    I’m comfortable with the basics of the -filter_complex, but I cannot figure out how to apply any arithmetic expressions - like the one’s referenced here : https://www.ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation

    Here’s an example of something I’d like to accomplish.

    ffmpeg -i [INPUT1] -i [INPUT2] -filter_complex "[0:v][1:v]overlay=shortest=1:x=720:y=0:enable='between(t,10,20)'[overlay];...

    In this example the overlay is stationary at pixel coordinate 720x0 from the 10th second to the 20th second.

    However, Id like to have it move to a new location in a linear fashion and end at a different pixel coordinate.

    For example, during that 10 second overlay, I’d like to have it start at 720x0, but then end at 1000x100.

    Is this possible ?