Recherche avancée

Médias (91)

Autres articles (74)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (11880)

  • Configure FFmpeg to save the recording at specified time intervals as separate output files

    27 septembre 2023, par John Doe

    How can I configure FFmpeg to save the recording into separate output files at specific time intervals, for example, every 25 seconds without interrupting the recording ? By default, FFmpeg saves the entire recorded video in a single output file, but I want to create separate output files for each 25-second segment.
What steps should I follow to achieve this ?

    


    I tried python multiprogramming to run the recording and saving task simultanously but didn't work.

    


    How about using the @ffmpeg.on("progress") event ?

    


  • Is it possible to save snapshots from multiple video streams using ffmpeg ?

    14 novembre 2023, par Haydn Morris

    I would like to periodically save a snapshot from a video stream using ffmpeg. This is is possible using the following command :

    


    ffmpeg -i [source] -r 0.2 -f image2 ./image-%04d.jpeg

    


    or the (rough) equivalent in ffmpge-python :

    


    ffmpeg.input(source, **inputArgs)
    .filter("fps", fps=1 / 5, round="up")
    .output("./image-%04d.jpeg")


    


    I would like to do this for N input streams simultaneously. So, I would be saving 1 frame every 5 seconds for each of the input streams. Is this possible using ffmpeg or ffmpeg-python ? I can't find any examples with multiple input streams.

    


    Just for some more information : the sources are all rtsp streams and N can be between 10 and 60. I also would like to limit the number of files on disk at any one time (similar to G-streamer's max-files property) but this is less important.

    


  • concatdec : change data type to suppress warning about limited range of data type...

    17 décembre 2012, par Michael Niedermayer

    concatdec : change data type to suppress warning about limited range of data type...