Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (5)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (1995)

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