Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (40)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

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

  • Is it possible to set up ffmpeg as a repeater ?

    15 janvier 2021, par DigitalDisaster

    I am using this PyLivestream library to stream files to youtube. the problem is that once it finishes each video the scren goes down for a second until the next video starts. because it's simply just creating ffmpeg command and running then directly in a subprocess for each media file.

    


    Is it possible to configure an instance of ffmpeg that will always be streaming to the destination. It could just be a blank screen or an image. And it also has an input, so I can point PyLivestream to the repeater.

    


    This way the repeater will create one long un-interupted stream experience, but I can still use PyLivestream to stream the individual files.

    


  • Write frames to RTSP/HTTP using FFMPEG

    28 novembre 2022, par user20623229

    I have an application that reads footage from an RTSP stream and processes the frames. I need to restream these processed frames to another RTSP stream. I have used the following command to stream a video file using FFMPEG :
    
ffmpeg -re -stream_loop -1 -i D :\Proj\sample.mp4 -c copy -f rtsp rtsp ://10.0.0.0:8554/mystream.
Is it possible to stream individual frames as soon as they are processed and not only a full video file ?
The algorithm has been built in MATLAB.

    


    Thank you.

    


  • mp4 metadata extraction in Python

    22 avril 2016, par TerraCode

    I have a program that has to edit several videos based off of data in a separate json-file. These videos are sequential and they have metadata in their own json file. The program edits them with a frame-by-frame overlay (eye-tracking data).

    What I’d like to do is compare individual mp4 metadata with the json-file metadata so I can compare timestamps, making sure everything is synchronized.

    If possible, how would I get to the mp4 metadata ?