Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (32)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • headless chrome capture screen video or animation

    14 septembre 2019, par t_io

    I try to capture some animations from a website and stitch them together using ffmpeg.
    As far as I understand the docs startScreencast is the way to go.

    If I understand that right I can start the screencast with

    await Page.startScreencast({format: 'png', everyNthFrame: 1});

    and listen to every incoming frame with

    Page.screencastFrame(image =>{
     const {data, metadata} = image;
     console.log(metadata);
    });

    But it’s never prints out something. So I assume it’s not called.

    I archived my goal with something like this :

    let counter = 0;
    while(counter < 500){
     await Page.startScreencast({format: 'png', everyNthFrame: 1});
     const {data, metadata} = await Page.screencastFrame();
     console.log(metadata);
     counter += 1;
    }

    Which feels like a non-performant hack.
    So any suggestions on how to use startScreencast and screencastFrame properly ?

  • headless chrome capture screen video or animation

    22 mai 2017, par t_io

    I try to capture some animations from a website and stitch them together using ffmpeg.
    As far as I understand the docs startScreencast is the way to go.

    If I understand that right I can start the screencast with

    await Page.startScreencast({format: 'png', everyNthFrame: 1});

    and listen to every incoming frame with

    Page.screencastFrame(image =>{
     const {data, metadata} = image;
     console.log(metadata);
    });

    But it’s never prints out something. So I assume it’s not called.

    I archived my goal with something like this :

    let counter = 0;
    while(counter < 500){
     await Page.startScreencast({format: 'png', everyNthFrame: 1});
     const {data, metadata} = await Page.screencastFrame();
     console.log(metadata);
     counter += 1;
    }

    Which feels like a non-performant hack.
    So any suggestions on how to use startScreencast and screencastFrame properly ?

  • Builing ffmpeg with libx264 enabled on cygwin

    26 octobre 2015, par Rakesh Singh

    I am trying to build ffmpeg (0.6.1 release) with libx264 for h.264 support on windows platform over cygwin environment.

    I compiled x264-snapshot-20101228-2245 and installed the library in /usr/local/lib/(libx264.a). The configure option here (./configure —enable-shared —disable-asm )

    Now I am trying to build ffmpeg with below configure option :

    ./configure —enable-shared —disable-static —enable-pthreads —enable-libx264 —enable-gpl —disable-doc —enable-memalign-hack —extra-ldflags=/usr/local/lib

    But configure is giving error.
    shell :
    ERROR : libx264 not found

    ++++++++++++++++++++
    config.err

    gcc -o /tmp/ffconf.ww1dJh1K.exe /tmp/ffconf.X7919VWP.o -lpsapi -lz -lbz2 -lm -lx264 -lm
    /usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld : cannot find -lx264
    collect2 : ld returned 1 exit status
    ERROR : libx264 not found
    ++++++++++++++++++++++

    Tools Details
    Gcc version : gcc (GCC) 4.3.4 20090804 (release) 1

    I will be glad if somebody points out the issue here.