Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (100)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (12525)

  • VOD Streaming While Live Recording RTMP

    7 février 2019, par Nick Dario

    I need to collect a live stream of audio and offer it as a stream playable from the start, while recording is in progress.

    

It is important the audio is processed from the beginning, and it must be processed within 1 second.

    I am using SRS (simple RTMP server) to handle the rtmp stream, the server allows me to record the stream to a file, but I have not been able to offer the file as a stream.



    What set of tools or methods using SRS, another audio software (possibly ffmpeg), or raw audio manipulation, can achieve this ?

  • 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')
  • RAM increasing when use ffmpeg for live streaming with Python ?

    21 février 2019, par 盛剑军

    I’m new to program and I here is my question:I use ffmpeg for live streaming to play movie on Raspberry,since every thing worked well, I find the RAM(RSS) problem.
    enter image description here

    Could you help me ? Thanks !