Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (8939)

  • Anomalie #3024 (Fermé) : spip_loader.php et IE8 (oui.... les pros du C/S traditionnels l’exigent !)

    3 mai 2015, par b b

    IE8 n’est plus supporté depuis le 8 avril 2014, cf http://fr.wikipedia.org/wiki/Internet_Explorer#Internet_Explorer_8 => on ferme.

  • Anomalie #3024 (Nouveau) : spip_loader.php et IE8 (oui.... les pros du C/S traditionnels l’exigent !)

    10 juillet 2013, par YannX spip

    Le lancement de spip_loader.php boucle sur le :
    spip_loader.php ?etape=fichier&chemin=spip/stable/spip-3.0.zip&dest=&range=0
    (il se reactive en restant toujours à range=0 !!)

    P.S.N’oubliez pas qu’en entreprises, et surtout dans les administrations,
    un vieil IE reste obligatoire pour certains programmes applicatifs...
    (helas, mais impossible à renverser..)

  • Record region of screen using FFMPEG ? [closed]

    13 février 2024, par pookie

    I am looking to record a defined area of the screen at as high FPS as possible. I then need to extract the milliseconds for each frame.

    



    I was looking at FFMPEG and found that it has (or had...) an option called x11grab, so I tried the following to record a region of the screen :

    



    ffmpeg -f x11grab -s 1678x1050 -i :0.0+7,53 -r 25


    



    It doesn't work : I get an error Unknown input format: 'x11grab'

    



    I tried with xcbgrab too, but I get the same error of Unknown input format...

    



    I have seen this SO post, but I am using Windows 10, and it did not help me.

    



    Google tells me that this argument is now deprecated. I cannot find an examples of how to record just a part of the screen.

    



    I want to take a partial screenshot because I need as high a FPS as possible and my assumption is that taking a partial capture will be faster than taking a full screen capture. Is that correct ? If not, of course I could take a full screen capture and the crop out region of interest... and if that is the case, does anyone know how to do that ?