Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (98)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (18895)

  • 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')
  • 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 ?

  • libavformat/dashdec : disable seeking only for live streams.

    4 février 2019, par Paweł Wegner
    libavformat/dashdec : disable seeking only for live streams.
    

    Signed-off-by : Paweł Wegner <pawel.wegner95@gmail.com>

    • [DH] libavformat/dashdec.c