Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (70)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (12162)

  • How to decode stream data via ffmpeg library [closed]

    23 juillet 2024, par Steffen Roeber

    I found this example on GitHub : avio_read_callback.c. Unfortunately, it is a very simplified example because it reads the whole input file into memory and processes it at once.

    


    Does anyone have a better example of how to use avio_alloc_context with the read callback and how to handle incoming data block by block ? Specifically, I'm looking for details on :

    


      

    • The appropriate size for avio_ctx_buffer_size
    • 


    • The correct return value in the read callback if there isn't enough data
    • 


    • Handling situations where more memory is needed after some data has already
been copied, such as when avformat_open_input fails initially
    • 


    


    I have an H.264 stream that works sometimes, depending on the buffer sizes, but I occasionally experience data drops.

    


  • Encoding raw video data using C++ [closed]

    6 décembre 2020, par Lakshya

    I have raw video data ( array of unsigned chars ). Which is data to represent one frame.
I have many frames like this.(Actually these are the frames of a video which I have already decoded.)

    


    How can I encode it using Gstreamer or FFMPEG or something else. Programming language should be C++.

    


    I am expecting some example code.

    


  • Converting RTP data to RTSP

    20 janvier 2015, par Anandhu

    I am having a live stream of ts data. I streamed this with an rtp header and received it in an android device using vlc. Now i would like to stream the same stream using rtsp protocol. How can I do this. Is there some method for using this rtp data for streaming rtsp ?