Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

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

  • Is there any way to use nodecanvas(Canvas library for node) for video purpose ?

    7 mai 2019, par Aswin

    I know that node-canvas can be used to export as buffer by loading image, Is there was any to load video in node-canvas (canvas library for node js),So that i can take screenshots of canvas frame by frame and finally i can prepare video from screenshots using ffmpeg. Or any other alternative way to achieve this . Anyone please give me any idea.Thanks in advance.

  • First x frames from a video

    27 juin 2012, par Dow

    I need to get the first x frames from a video (usually FLV) and turn it into a GIF. The idea is to use these GIFs as a short preview for the real thing.

    At the moment, we're using ffmpeg and imagemagick to do that :

    ffmpeg -y -i movie.flv -pix_fmt rgb32 -r fps extracted/%d.png

    convert extracted/0.png ... extracted/50.png -delay 4 -loop 0 \
    -set dispose Background -sample 256x256> preview.gif

    So basically, first the frames are extracted, converted to PNG, then the PNGs are put together again into a GIF. There are a lot of unnecessary steps involved here.

    Does anyone have any suggestions for speeding up this process ?

    Thanks in advance !

  • ffmpeg filter in my own application

    26 juin 2018, par user25571

    How can I use one of filters from ffmpeg library in my own application. In fact, I only wanna detect silence in my audio files and so I must use af_silencedetect.c file. This file is one of ffmpeg filters that can be utilized with -af silencesetect command.

    Therefore my obvious question is : "What’s step-by-step procedure in using this file in my own application and which dependencies I must add to my MSVC project ?"

    Your points are appreciated in advance ....