Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8885)

  • convert yuv420p raw data to image opencv

    21 octobre 2020, par NightRider

    I have raw data from rtmp server with pixel format yuv420p

    


    I use pipe to read data. But I don't know how to decode raw data to image.

    


    command = ['ffmpeg']
command.extend(["-loglevel", "fatal", "-i", 'rtmp://localhost/live/stream', "-f", "flv", "-pix_fmt" , 'yuv420p', '-vcodec', 'h264', "-"])
self.process = subprocess.Popen(command, stderr=subprocess.PIPE ,stdout = subprocess.PIPE)
self.output = self.process.stdout
self.fs = width*height*3 // 2
while True:
    data = self.output.read(self.fs)


    


    I have try decode like this enter link description here

    


    But result is enter image description here

    


    Can anyone help me with this problem ?

    


  • Get output data from x264vfw filter

    23 août 2012, par no.Oby

    I need get H264 stream from x264 encoder and make some kind of live streaming server. Client will connect to the server, then via rtsp recieve video. How can I get data from x264vfw output pin ?
    In what way better do that ?

  • How do I create a MPEG stream with private binary data using avconv ?

    19 février 2013, par haole

    I have some binary data that I need to transmit with a MPEG transport stream. I don't need to worry about the tables, because another software in the process is going to insert them into the stream.

    I have a fixed private PID that I have to use. Is there a way to just "break" this binary data into TS packets with the my private PID using only this command line tool (avconv) ? If not, is it possible with the C library ?