Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (18)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (4553)

  • How to access windows enviroment variables on MSYS ?

    15 octobre 2016, par Mostafa Sataki

    I want to build ffmpeg by vs2015 from msys2.

    In the first add vs2015\vc\bin\amd64 in to path enviroment in windows.

    Run "vs2015 x64 command prompt" as administrator then run vcvarsall.bat amd64.

    In the final go to "msys" path and then run "msys2_shell.cmd".

    I use "which cl" command for localize cl.exe.

    Output :

    which : no cl in
    (/usr/local/bin :/usr/bin :/bin :/opt/bin :/c/Windows/System32 :/c/Windows :/c/Windows/System32/Wbem :/c/Windows/System32/WindowsPowerShell/v1.0/)

    How to access to windows enviroments in the msys ?

  • Revision 99981 : Sur Opera 40 sous Windows 10, ça provoquait un « Uncaught ReferenceError : ...

    20 octobre 2016, par real3t@… — Log

    Sur Opera 40 sous Windows 10, ça provoquait un « Uncaught ReferenceError ? : tableau_sites is not defined » qui rendait les boutons calculer inutiles.

  • How to take a screenshot of desktop fast with Java in Windows (ffmpeg, etc.) ?

    4 mars 2015, par Setsuna

    I would like to use java to take a screenshot of my machine using FFMPEG or some other solution. I know linux works with ffmpeg without JNI, but running it in Windows does not work and may require (JNI ?) is there any sample of some simple Java class (and anything else necessary) to capture a screenshot runnable in a windows environment ? Is there some alternative to FFMPEG ? I want to take screenshot at a rate faster than the Java Robot API, which I have found to work at taking screenshots, but is slower than I would like.

    I know in Linux this works very fast :

    import com.googlecode.javacv.*;

    public class ScreenGrabber {
       public static void main(String[] args) throws Exception {
           int x = 0, y = 0, w = 1024, h = 768;
           FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(":0.0+" + x + "," + y);
           grabber.setFormat("x11grab");
           grabber.setImageWidth(w);
           grabber.setImageHeight(h);
           grabber.start();

           CanvasFrame frame = new CanvasFrame("Screen Capture");
           while (frame.isVisible()) {
               frame.showImage(grabber.grab());
           }
           frame.dispose();
           grabber.stop();
       }

    This does not work in windows environment. Am not sure if there is some way I could use this same code, but use javacpp to actually get it working without having to change much of the above code.

    Goal is to take screenshots of screen fast, but then stop after it takes a screenshot that is "different", aka. screen changed because of some event like, a window is window closed, etc.