Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (45)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (9565)

  • CPU spike when transitioning from a still image

    21 avril 2016, par lagnat

    After streaming a still image (with x264) for a long period of time, the transition to live video makes the CPU spike to 100% for a period of time proportionally equal to how long the still image was streaming. More specifically, transitioning after a minute will result in a CPU spike lasting about 15 seconds. Transitioning after 30 minutes will result in that spike lasting closer to 3 minutes.

    Does this symptom make any sense and is there anything I can do about it ?

  • Any other better ways to extract frames from a large size video according to the timecode given ?

    6 avril 2020, par Yong En

    Given a video from youtube with at least 600 MB. The video is annotated with labels that happens in multiple timecodes. The timecodes are in millisecond (SSSS.ss). I am trying to get the frames that fall within a time period (2 timecodes). There are TWO approaches that I used with different tools, one is using openCV in python and FFmpeg in bash script :

    



    I would stick with few variables here,

    



      

    • fps = 25
    • 


    • timecode (after convert into second) = 333.44 to 334.00 take note that I am dealing with time period that might less than a second.
    • 


    



    openCV

    



      

    1. Using openCV in python, I read the video as frames into a numpy array. Using the fps from video, 25. I can estimate where do the frames that fall under this time period by diving total video duration in second with length of the numpy array.
    2. 


    3. Problem here is I will miss out some frames here due to the video fps is not really 25 as given by the video meta info, it could be 24.xx. Any solutions ?
    4. 


    



    ffmpeg

    



      

    1. What I did, every time I want to get the frames, I run the script.
    2. 


    3. Problem here is I need to read the video 100 times if I have 100 time periods. Any ways to overcome this ?
    4. 


    



    Thanks for reading it.

    


  • Efficient and Perfect way to extract frames from a large size video using python or ffmpeg according the timecode given

    5 avril 2020, par Yong En

    let's say I have a video from youtube with at least 600 MB. The video is used for annotation where I have the annotated information in another text file. The annotation file has the timecode in millisecond (SSSS.ss). What I am trying to do is going into the timecode on the video and getting out the frames within the this period (TWO timecodes). There are TWO approaches that I used with different tools, one is using openCV in python and FFmpeg in bash script :

    



    I would stick with few variables here,

    



      

    • fps = 25
    • 


    • timecode (after convert into second) = 333.44 to 334.00 take note that I am dealing with time period that might less than a second.
    • 


    



    openCV

    



      

    1. Using openCV in python, I read the video into frame by frame. Ends up with a numpy array.
    2. 


    3. Using the fps from video, eg. fps = 25. I can estimate where does the frames that fall under this time period which give me what I want.
    4. 


    5. Problem here is I will missed out some frames here due to the video fps is not really 25 as given by the video misinformation, it could 24.xx. Any solutions ?
    6. 


    



    ffmpeg

    



      

    1. What I did, every time I want to get the frames, I run the script.
    2. 


    3. Problem here is I need to read the video 100 times if I have 100 time periods. Any ways to overcome this ?
    4. 


    



    Thanks for reading it.