Recherche avancée

Médias (91)

Autres articles (50)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5208)

  • Revision 37408 : déplacement de chaines de langue Faire refonctionner l’encodage sonore

    18 avril 2010, par kent1@… — Log

    déplacement de chaines de langue
    Faire refonctionner l’encodage sonore

  • Introducing Updates to the Funnels Feature

    29 mai 2024, par Erin

    We’ve made improvements to the Funnels feature to be more user-friendly and offer you greater flexibility. 

    &lt;script type=&quot;text/javascript&quot;&gt;<br />
           if ('function' === typeof window.playMatomoVideo){<br />
           window.playMatomoVideo(&quot;FunnelsProductUpdate2024&quot;, &quot;#FunnelsProductUpdate2024&quot;)<br />
           } else {<br />
           document.addEventListener(&quot;DOMContentLoaded&quot;, function() { window.playMatomoVideo(&quot;FunnelsProductUpdate2024&quot;, &quot;#FunnelsProductUpdate2024&quot;); });<br />
           }<br />
      &lt;/script&gt;

    Here’s what’s changing :

    Setting up and managing funnels is now easier than ever 

    Previously, creating funnels was tedious and required going through the Goals feature. But we’ve changed that with the introduction of a separate page to configure funnels. 

    Dedicated Manage Funnels page in Matomo

    Create funnels with greater flexibility—no longer tied to goals 

    Funnels is now a standalone feature, providing you with more flexibility. Before, you could only create a funnel if it was tied to a goal, in other words, the final step in the funnel had to be a goal. What’s more, you also couldn’t use goals for steps in the funnel.  

    Previous configuration requirements of Funnels in Matomo
    Previous configuration requirements of Funnels

    Now, funnels are independent of goals, and goals can serve as steps within the funnel. This means you have the freedom to configure any combination of steps in a funnel : 

    • All steps can be goals 
    • No steps need to be goals 
    • Or some steps can be goals, some steps can be events 
    Goals no longer required in Matomo Funnels

    No matter what your customer journey looks like, funnels now offer the versatility to meet your business’s specific needs. 

    Find friction points faster with intuitive visuals 

    One of the most significant improvements is the visual upgrade of the Funnels feature. The new Funnels graph is now visually in line with industry standards and intuitive. 

    New Funnel Analytics chart in Matomo

    The new visual provides a clearer view of your drop-off and conversion rates so you can instantly find points of friction in your funnel to improve the user experience and overall conversion rate.  

    This visualisation also provides a detailed overview of the number of visitors who enter, exit, skip, or proceed at each step of your funnel by using different coloured bars for visual clarity on each step’s performance. 

    With this update, we’ve also replaced ‘backfilled visits’ with ‘skipped steps’ to avoid misinterpretation of the data. 

    New data table for more granular insights 

    Accompanying this visual improvement is a new data table, allowing for more granular insights, segment comparison, and easy data export.

    We’ve also increased Funnel analysis limits. You can now compare funnel data for 2 date periods and 6 segments (up to 12 compared datasets in total). 

    Sign up for our newsletter to receive all the latest Matomo updates. 

  • Why does every encoded frame's size increase after I had use to set one frame to be key in intel qsv of ffmpeg

    22 avril 2021, par TONY

    I used intel's qsv to encode h264 video in ffmpeg. My av codec context settings is like as below :

    &#xA;

     m_ctx->width = m_width;&#xA;    m_ctx->height = m_height;&#xA;    m_ctx->time_base = { 1, (int)fps };&#xA;    m_ctx->qmin = 10;&#xA;    m_ctx->qmax = 35;&#xA;    m_ctx->gop_size = 3000;&#xA;    m_ctx->max_b_frames = 0;&#xA;    m_ctx->has_b_frames = false;&#xA;    m_ctx->refs = 2;&#xA;    m_ctx->slices = 0;&#xA;    m_ctx->codec_id = m_encoder->id;&#xA;    m_ctx->codec_type = AVMEDIA_TYPE_VIDEO;&#xA;    m_ctx->pix_fmt = m_h264InputFormat;&#xA;    m_ctx->compression_level = 4;&#xA;    m_ctx->flags &amp;= ~AV_CODEC_FLAG_CLOSED_GOP;&#xA;    AVDictionary *param = nullptr;&#xA;    av_dict_set(&amp;param, "idr_interval", "0", 0);&#xA;    av_dict_set(&amp;param, "async_depth", "1", 0);&#xA;    av_dict_set(&amp;param, "forced_idr", "1", 0);&#xA;

    &#xA;

    and in the encoding, I set the AVFrame to be AV_PICTURE_TYPE_I when key frame is needed :

    &#xA;

      if(key_frame){&#xA;        encodeFrame->pict_type = AV_PICTURE_TYPE_I;&#xA;    }else{&#xA;        encodeFrame->pict_type = AV_PICTURE_TYPE_NONE;&#xA;    }&#xA;    avcodec_send_frame(m_ctx, encodeFrame);&#xA;    avcodec_receive_packet(m_ctx, m_packet);&#xA;   std::cerr&lt;&lt;"packet size is "&lt;size&lt;&lt;",is key frame "&lt;code>

    &#xA;

    The strange phenomenon is that if I had set one frame to AV_PICTURE_TYPE_I, then every encoded frame's size after the key frame would increase. If I change the h264 encoder to x264, then it's ok.

    &#xA;

    The packet size is as below before I call "encodeFrame->pict_type = AV_PICTURE_TYPE_I" :

    &#xA;

    packet size is 26839&#xA;packet size is 2766&#xA;packet size is 2794&#xA;packet size is 2193&#xA;packet size is 1820&#xA;packet size is 2542&#xA;packet size is 2024&#xA;packet size is 1692&#xA;packet size is 2095&#xA;packet size is 2550&#xA;packet size is 1685&#xA;packet size is 1800&#xA;packet size is 2276&#xA;packet size is 1813&#xA;packet size is 2206&#xA;packet size is 2745&#xA;packet size is 2334&#xA;packet size is 2623&#xA;packet size is 2055&#xA;

    &#xA;

    If I call "encodeFrame->pict_type = AV_PICTURE_TYPE_I", then the packet size is as below :

    &#xA;

    packet size is 23720,is key frame 1&#xA;packet size is 23771,is key frame 0&#xA;packet size is 23738,is key frame 0&#xA;packet size is 23752,is key frame 0&#xA;packet size is 23771,is key frame 0&#xA;packet size is 23763,is key frame 0&#xA;packet size is 23715,is key frame 0&#xA;packet size is 23686,is key frame 0&#xA;packet size is 23829,is key frame 0&#xA;packet size is 23774,is key frame 0&#xA;packet size is 23850,is key frame 0&#xA;

    &#xA;