Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (67)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5119)

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

  • how to add reference movie into ffmpeg psnr filter in codes (computing psnr)

    15 octobre 2016, par user1317278

    I just want to find out how to use the psnr filter in ffmpeg in codes.

    I have followed the codes stated in https://ffmpeg.org/ffmpeg-filters.html#psnr :

    sprintf(args, "movie=ref_movie.avi [main];[main][ref] psnr=\"stats_file=stats.log\" [out]");
    err = avfilter_graph_create_filter(&psnrCtx,  psnrFilter, "psnr", args, NULL, m_filterGraph);
    if ( err < 0 ) {
       avfilter_graph_free(&m_filterGraph);
       m_filterGraph = NULL;
       return false; }

    But the error message return to me :

    Option 'movie' not found

    I also try this :

    sprintf(args, "stats_file=stats.log");
    err = avfilter_graph_create_filter(&psnrCtx,  psnrFilter, "psnr", args, NULL, m_filterGraph);
    if ( err < 0 ) {
      avfilter_graph_free(&m_filterGraph);
      m_filterGraph = NULL;
      return false; }
    err = avfilter_link(last_ctx, 0, psnrCtx, 0);
    if ( err < 0 ) {
      avfilter_graph_free(&m_filterGraph);
      m_filterGraph = NULL;
      return false;}

    ...  
    err = avfilter_graph_config(m_filterGraph, NULL);
    if ( err < 0 ) {
      avfilter_graph_free(&m_filterGraph);
      m_filterGraph = NULL;
      return false;
    }

    but the error message return to me :

    Input pad "reference" with type video of the filter instance "psnr" of psnr not connected to any source

    I search psnr filter in codes but there is not much information about it. Can anyone help on this ?

  • lavf/aiffdec : Default to full rate qcelp as QT does.

    11 octobre 2016, par Carl Eugen Hoyos
    lavf/aiffdec : Default to full rate qcelp as QT does.
    

    Fixes decoding of the output file from ticket #4009.

    • [DH] libavformat/aiffdec.c
    • [DH] libavformat/version.h