Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (6378)

  • How to Check RTMP Live stream is on or off

    16 juillet 2015, par ITit superpower

    I want tocheck RTMP live stream is on or off for mic.

    I have used RTMP DUMP

    exec("/usr/bin/rtmpdump -V -v -r rtmp://www.exapmle.com/etc./13/mic1 -o /tmp/rtmp-checker.log 2>&1", $pp);

    I have found this trick from
    http://blog.svnlabs.com/how-to-check-rtmp-source-stream-is-live-or-not/

    But i am not Satisfy with result because some time its not working and generates random string as result.

    So some time i am facing this type of error. any perfect solution for this.?
    IF YOU have any other solution Using FFMPEG OR OTHER then you are most welcome.

  • Streaming live image with HLS

    20 février 2019, par kabab

    I have a stream of images that come from a live video (RTP), the images pass through a pipeline of transformations, and I would like to stream the video again using HLS to the enduser, How can I take the buffer of images and stream it live using HLS ?


    The current solution that I m using is returning the frames using http which is too slow and not scalable.

    @app.route("/")
    def main():
       return Response(gen(),
                     mimetype='multipart/x-mixed-replace; boundary=frame')

    def gen():
       while True:
           time.sleep(.04)
           data = get()
           yield (b'--frame\r\n'
                  b'Content-Type: image/jpeg\r\n\r\n' + data.tobytes() + b'\r\n\r\n')
  • Live stream videos on YouTube with ffmpeg ?

    30 janvier 2021, par Manuservus

    What the program should do :

    


    It should download a video from an URL.

    


    Then put the video into a streaming interface (on the right side there should be the live chat from YouTube, in the middle, there should be the downloaded video).

    


    Next stream it live to YouTube.

    


    The process should repeat endless times.

    


    Download video from URL —> Stream it live to YouTube in a streaming interface -> repeat the whole process.

    


    Is this even possible in Python ? If yes how ?

    


    I would appreciate any help !

    


    PS : The stream should run smoothly without a break. That means : As soon as a video is finished, the next comes straight away.