Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (76)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (11263)

  • vulkan_decode : don't call get_proc_addr on every frame's destruction

    15 septembre 2023, par Lynne
    vulkan_decode : don't call get_proc_addr on every frame's destruction
    

    The issue is that we cannot rely on any context existing when we free
    frames. The Vulkan functions are loaded in each context separately,
    so until now, we've just been loading them on every frame's destruction.

    Rather than do this, just save the function pointers we need in each
    frame. The function pointers are guaranteed to not change and exist.

    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_decode.h
  • ImageJ / Fiji shows wrong number of frames in video (FFMPEG import)

    28 avril 2023, par locoric_polska

    I am counting the number of animals in a an area using Fiji. I import the video through the FFMPEG plug-in (videos are mp4 with mpeg-4 codec). However, I noticed that when I import the videos Fiji uploads the wrong number of frames, and I cannot understand why and how.

    


    An example. I have a video shot at 25fps which is 1582s long. If I do the calculations the video should have 39550 frames in total (1582*25). When I open it through a Computer vision package in R, I see that the video correctly contains 39550 frames. However, when loaded in Fiji, the shown number of frames is 49511. So Fiji is adding 9961 frames to the video. This is consistent across all videos that are recorded in 25fps, while it does not appear in videos shot at 24fps.

    


    Curiously, I found that the ratio between the number of frames read by Fiji and the 'real' number of frames is consistent between 0.79 and 0.80. This makes me think that Fiji is expecting the video to be 30fps and (possibly) duplicating frames to adjust the video to this assumption.

    


    Unfortunately, I discovered all this after finishing my analysis and while trying to merge this dataset with another obtained through CV. The number of frame does not match between datasets and I am not sure how to solve this.

    


    Any help would be greatly appreciated !!

    


    An idea is to multiply all the frame numbers by 0.8 to adjust them to the old assumption. This solution assumes that Fiji is duplicating frames throughout the video in a consistent way

    


  • Uncaught ReferenceError : createFFmpeg is not defined

    29 décembre 2023, par irankhostravi

    How to create an FFMpeg video tag in HTML 5 ?

    


    I get this error

    


    


    Uncaught ReferenceError : createFFmpeg is not defined

    


    


    

    

    &#xA;&#xA;&#xA;  &#xA;  <code class="echappe-js">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/@ffmpeg/ffmpeg&quot;&gt;&lt;/script&gt;&#xA;&#xA;&#xA;  

    HTML5 FFmpeg Example

    &#xA; &#xA; &lt;script&gt;&amp;#xA;    const ffmpeg = createFFmpeg({ log: true });&amp;#xA;    const loadFFmpeg = async () =&gt; {&amp;#xA;      await ffmpeg.load();&amp;#xA;      console.log(&amp;#x27;FFmpeg loaded&amp;#x27;);&amp;#xA;    };&amp;#xA;    loadFFmpeg();&amp;#xA;  &lt;/script&gt;&#xA;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;