Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (39)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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" (...)

Sur d’autres sites (3923)

  • hwcontext_qsv : do not fail when download/upload VPP session creation fails

    10 août 2016, par Anton Khirnov
    hwcontext_qsv : do not fail when download/upload VPP session creation fails
    

    Certain pixel formats (e.g. P8) might not be supported for
    download/upload through VPP operations, but can still be used otherwise.

    Signed-off-by : Maxym Dmytrychenko <maxym.dmytrychenko@intel.com>

    • [DBH] libavutil/hwcontext_qsv.c
  • mov : Evaluate the movie display matrix

    24 octobre 2016, par Vittorio Giovara
    mov : Evaluate the movie display matrix
    

    This matrix needs to be applied after all others have (currently only
    display matrix from trak), but cannot be handled in movie box, since
    streams are not allocated yet. So store it in main context, and apply
    it when appropriate, that is after parsing the tkhd one.

    Fate tests are updated accordingly.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavformat/isom.h
    • [DBH] libavformat/mov.c
    • [DBH] tests/ref/fate/mov-dar
    • [DBH] tests/ref/fate/mov-display-matrix
    • [DBH] tests/ref/fate/mov-sar
  • Making a movie from the url using ffmpeg and phantomjs

    1er novembre 2016, par Matt

    Im Taking screen shots from a url, using phantomjs using the setIntreval function (25 right now) and then piping the output to the ffmpeg (Using the frame rate -r 24).
    Here is the Code. ffmpeg.js

    var page = require('webpage').create();
    page.viewportSize = { width: 1024, height: 768 };

    page.open('http://ewoken.github.io/Leaflet.MovingMarker/', function () {
     setInterval(function() {
       page.render('/dev/stdout', { format: "png" });
     }, 25);
    });

    Then I run the script using this.

    phantomjs ffmpeg.js | ffmpeg -y -c:v png -f image2pipe -r 24 -t 10 -i - -c:v libx264 -pix_fmt yuv420p -movflags +faststart output.mp4

    Like In the command Im getting the 10 sec video with the page, But Its all speeding up fast first and completely freezes with a last frame.

    Can you guys help me, with a work around, enabling me to record the page , AS IS ? Like if there is a 3000 delay animation in the movie, It should appear like real in the movie, like smooth and in real time.

    Thank you guys. Stuck on this for a long time now.

    Cheers,