Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

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

  • tiff : fix linesize for mono-white/black formats

    9 mai 2011, par Stefano Sabatini

    tiff : fix linesize for mono-white/black formats

  • How do I cut black frames from video with ffmpeg ?

    13 mai 2020, par h0dges

    I've got a timelapse video with overnight frames that are not illuminated and would like to know how to either :

    



      

    • Cut the black frames (pblack=99) out of the video AND correspondingly reduce the
length of the output video (i.e. not duplicate or interpolate frames)
    • 


    • Analyse the input images before generating the timelapse video in order to exclude the overnight images from the video.
    • 


    



    Just to be awkward I'd like to use the jrottenberg/ffmpeg docker image.

    



    This is the command I'm currently using to generate the timelapse video :

    



    docker run -v timelapse-images:/images -v timelapse-videos:/videos jrottenberg/ffmpeg -y -f image2 -framerate 30 -pattern_type glob -i '/images/*.jpg' /videos/timelapse.mp4


    


  • How to crop bottom of video followed by removing black borders ?

    9 mai 2018, par pmdaly

    I have video where there is a static bar on the bottom 50 pixels and also a black boarder around the actual content. I want to remove the bottom 50 pixels then use cropdetect to auto trim the border.

    I have the following to remove the border

    dims = $(ffmpeg -i "$video$ -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/{print $NF}' | tail -n1)

    ffmpeg -i "$video" -vf "$dims" "$video_out"

    I’m not sure how to add the step to remove the bottom 50 pixels prior to this.