Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (45)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

Sur d’autres sites (5805)

  • Anomalie #4736 : nouveau date picker et la modalbox ou les crayons dans le public

    16 avril 2021, par b b

    nicod _ a écrit :

    Avec saisies ça juste marche, en cochant éventuellement "Charger le javascript et les CSS sur toutes les pages" dans la config pour les popins et autres modales.

    Ça ne fonctionnait justement pas de manière automatisée, j’ai souvent fourbé de manière honteusement sale pour ça cf https://github.com/brunob/octopouce/commit/99cb1151359950554d0d0c16ec1fa458ab5ed0fb ; et si ça ne fonctionnait bien qu’en cochant une case de config pour charger js et css dans le public, je pense qu’on peut palier ça dans le core avec une bonne doc, car on ne souhaite surtout pas ajouter de clicodrome dans le core :)

  • What do I have to do to decompress MP4 video with NVDEC directly to a Texture buffer on an NVidia Jetson AGX Xavier computer ?

    13 septembre 2020, par Alexis Wilke

    What I'm trying to do is decompress two MP4 frames (one per NVDEC) and then manipulate them with OpenGL.

    


    Right now, though, this is too slow (definitely not real time), as I have to make copies of 4K images (3840x2160x3 in RGB) and that's just too much data to copy.

    


    I wrote a small benchmark to verify that part. I can only copy between 240 and 250 such buffers per second with memcpy(). That's too slow when the input movies are 60 fps...

    


    I'm able to use the NVDEC chip to decompress to a buffer through ffmpeg, but to place that in a texture, I then have to get the frame out of ffmpeg (copy 1) and then send that image to a texture (copy 2). Do that for two videos, that's 4 copies... 4K is huge ! So the CPUs don't have the time to do that much work 60 times per second.

    


    So right now I'm looking for a way to send the output of the NVDEC directly to a texture. Looking at GStreamer (the gst-launch-1.0), it takes like 3% CPU and can playback a 4K video in real time. What am I doing wrong ?

    


  • How to avoid these .bin files to execute ffmpeg library python

    11 avril 2019, par Josemi

    I had this code in Python 3.7 in Windows :

    import numpy as np
    import matplotlib.pyplot as plt
    from skimage import io, color
    import skvideo.io
    video = skvideo.io.vread('foreman.avi')

    But the terminal gave me the error : Cannot find installation of real FFmpeg (which comes with ffprobe). Therefore, I followed this guide : Cannot find installation of real FFmpeg (which comes with ffprobe) . However, they say that I had to add the .bin files from /bin directory into my path, and I added them to my workspace and everything worked.

    Now, the question is if there’s a way I don’t have to add the .bin files everytime I want to use the skvideo.io.vread function. I have even paste those files to the ffmpeg directory in C:\ProgramData\Anaconda3\Lib\site-packages\ffmpeg.

    Thank you for your attention.