Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (56)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7886)

  • How to reformat audio splitted to different blobs ?

    8 juillet 2023, par Nik

    I'm recording audio on web browser by RecordRTC then sending they to server in small blobs.

    


    First of blobs has headers with codecs and I may just reformat it to any format by ffmpeg. All other blobs have no any built-in information and when I'm trying to put they in ffmpeg it just answer 'Codec not found'.

    


    Ofc I may just concat they before any manipulations, but I want to stream they continuously to another computer.

    


    So, how may I reformating such files during the stream ?

    


  • Is 8K video encoding possible on MoviePy or OpenCV for python ?

    10 avril 2020, par Ahabbscience Studio

    just wanted to ask if this is possible. I am trying to make an 8k video, but due to low specs of my computer, I had to do this project on colab. I have some footages that I have upscaled to 8k via ESRGAN, and wanted to encode an 8K video out of them - reason being curiosity. I tried using OpenCV, and MoviePy but it turned out that more RAM was required than available in free tier. However, I also realized that my code wasn't utilitising the GPU/CUDA. Is it possible to implement CUDA in my case, and how can it be done on colab. I am not so fluent in python. Is this even possible with FFMPEG or not, or python as a whole.
Thanks

    


  • ffmpeg - where to save the video I plan to cut to frames

    28 décembre 2017, par Kyle

    I have ffmpeg up and running on my computer.

    Now I am trying to cut a video into individual frames. The video is titled IMG_2299.MOV.

    I am using the following command :

    ffmpeg -i img_2299.mov $filename%12d.jpeg

    Two questions :
    1) where do I need the actual video saved for this to work ? In the same folder as the ff* executable files (/usr/loca/bin) ?
    2) And where will the images created be saved ?

    I can run the command above — but I don’t see any results.

    Thank you for any help you can offer.