Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (65)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3021)

  • Get video pixel data from Exoplayer in Android

    25 février 2018, par Oliver Metz

    Is it possible to grab the pixel data (e.g. as RGB byte array) from a running video within the ExoPlayer ? Ideally as the real video resolution and not the size as the shown View. I’d want to forward that data to OpenCV for ImageProcessing purposes.

    Alternatively I’m looking for a robust (ffmpeg based) Android framework to input videos into OpenCV where the input might be IP-Cameras, local files, online files and online streams.

    Any help is appreciated.

  • How to use the data encoded in AVPacket to fill in RTMP_Packet and send it to RTMP server

    5 décembre 2019, par DJI_lover

    I am currently using ffmpeg to push live streaming, but the effect is not very good, so I want to control the details of librtmp. I know that AVPacket contains encoded data (H264 NAL, but not real NAL). I hope someone can tell me how to fill RTMP_Packet with AVPacket data. I hope there are some reference codes .Thanks !!

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