Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (55)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (4906)

  • Using ffmpeg and ffmpeg-cli-wrapper (Java) to remove black frames in a mp4 video made by Twilio [closed]

    3 janvier 2024, par Duc Nguyen

    I am using Programmable Twilio, when 2 users are recording and pause, there is a silence space with black frames in the output.
Is there a way in Twilio or in ffmpeg to remove all black frames (empty-silent spaces) ? I am using Java and ffmpeg-cli-wrapper

    


    I tried this https://video.stackexchange.com/questions/16564/how-to-trim-out-black-frames-with-ffmpeg-on-windows but it did not help.

    


  • FFMPEG - CONVERT VIDEO TO GREYSCALE EXCEPT ONE COLOR ? LEAVE ONE COLOR, THE REST BLACK & WHITE ? [closed]

    19 décembre 2023, par scm360

    I have been researching and cannot find anything on how to preserve just one color / color range ; while converting a video to greyscale / black & white using FFMPEG. For example ; all black and white, except the peoples Blue Jeans, etc.

    


    Anyone know how to do this in FFMPEG ?

    


    Thanks in advance.

    


    I haven't actually found anything that has promise to achieve this. Of course I know how to convert everything to greyscale / black & white. But, not just leave the color / color range.

    


  • How to speed up black video creation with FFMPEG ?

    2 décembre 2017, par Rick Sullivan

    I have been generating static black videos as backgrounds using FFMPEG’s color source. This works fine for smaller and shorter videos, but I need to be able to generate long 1080p black videos quickly.

    For example, I can generate a two hour long 1080p@30fps video using :

    ffmpeg -f lavfi -i color=black:s=1920x1080:r=30 -t 7200 test.mp4

    But this will take over 45 minutes to run.

    There are options that speed up runtime, like using the ultrafast preset :

    ffmpeg -f lavfi -i color=black:s=1920x1080:r=30 -preset ultrafast -t 7200 test.mp4

    Which will take around 20 minutes to run. Better, but not good enough for doing this en masse.

    Are there any other options to drastically speed up runtime ?

    Intuitively, I am generating a static video where only video duration varies, so it seems like there should be an approach that is restricted only by disk write speed. All of these options are very CPU intensive and seem to be doing more processing than is necessary for my use case.