Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (65)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (16840)

  • x86 : simple_idct10_template : fix overflow in pass

    12 octobre 2015, par Christophe Gisquet
    x86 : simple_idct10_template : fix overflow in pass
    

    When the input of a pass has 15 or 16 bits of precision (in particular
    the column pass), the addition of a bias to W4 may lead to overflows
    in the input to pmaddwd.

    This requires postponing the adding of the bias to after the first
    butterfly. To do so, the fact that m15, unused although zeroed, is
    exploited. In case the pass is safe, an address can be directly used,
    and the number of xmm regs can be decreased. Otherwise, the 32bits bias
    is loaded into it.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/x86/proresdsp.asm
    • [DH] libavcodec/x86/simple_idct10_template.asm
  • 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.

    &#xA;

    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.

    &#xA;

    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.

    &#xA;

    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.

    &#xA;

    Any help would be greatly appreciated !!

    &#xA;

    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

    &#xA;