Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (86)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12383)

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