Recherche avancée

Médias (91)

Autres articles (71)

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

  • Revision 0b6e35a90d : Merge branch 'master' of ssh ://gerrit.chromium.org:29418/webm/libvpx * 'master'

    23 janvier 2015, par hkuang

    Merge branch ’master’ of ssh ://gerrit.chromium.org:29418/webm/libvpx

    * ’master’ of ssh ://gerrit.chromium.org:29418/webm/libvpx :
    Add libvpx build targets for OS X 10.10 Yosemite.

  • Large HLS Stream to MP4 Clip using FFMPEG

    6 mars 2021, par Brandon Price

    I'm trying to create a clip from an HLS stream. The HLS stream is 8 hours long and the clip can be hours into the video. At most the clip is going to be 1 minute. Most similar answers on here convert the entire video to an mp4 which will take a very long time. Here's what I have so far :

    


    ffmpeg -live_start_index 0 -ss 05:22:19.82667 -i https://example.com/main.m3u8 -t 00:00:55.65625 output.mp4

    


    I like this implementation so far because ffmpeg seeks to the desired position in the playlist 5 hours into the video before it starts pulling down segments.

    


    The problem with this is that I've noticed oftentimes the first few seconds of video is paused (my guess because ffmpeg sees a keyframe only every 6 seconds). Any help would be much appreciated !

    


  • ffmpeg drawtext surrounded by rounded rectangle

    7 juillet 2021, par andykais

    I want to use ffmpeg to recreate the text bubbles that appear in apps like tiktok. I created this example using imagemagick to illustrate what I mean :

    


    example speech bubble with rounded corners

    


    So far with ffmpeg, all I am able to create is text backgrounds with sharp corners :

    


    enter image description here

    


    This was done with the following command :

    


    ffmpeg -i 'live-wallpaper.mp4' -vf "drawtext=text='Hello World':x=(w-text_w)/2:y=(h-text_h)/2:fontsize=100:fontcolor=black:box=1:boxcolor=white: boxborderw=8:fontfile='fonts/proximanova-semibold.otf'" output.mp4


    


    How can I get the output of ffmpeg to look more similar to the first image ? The text isn't always going to be "Hello World" either, so I need a solution that works for text that is shorter, longer, wraps, etc.