Recherche avancée

Médias (91)

Autres articles (64)

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

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10724)

  • Write silence audio data into file ffmpeg C++

    14 août 2015, par Kaidul Islam

    I want to write silence/zeroed audio sampled data into mov media container file inside audio data. My audio data is G711 linear PCM-mulaw encoded data with one channel. Currently my code looks like :

    AVFrame* pSilentData = av_frame_alloc();
    memset(&pSilentData->data[0], 0, iDataSize);
    pkt.data = (uint8_t*) pSilentData;
    pkt.size = iDataSize;

    // ...

    av_freep(&pSilentData->data[0]);
    av_frame_free(&pSilentData);

    But this sounds noise like dot dot instead of silence. What’s the problem ?

  • recive klv data from a ffmpeg mulsticast

    5 avril 2019, par diego

    I am trying to get the klv data from a .mpeg.

    I tried this command and it works perfectly :

    ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv

    Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv

    sender : ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410

    receiver : ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv

    I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.

    Thanks

  • AVFrame data format

    10 mars 2021, par Валентин Никин

    I process the raw data from AVFrame.data. Pixel format of this frames is AV_PIX_FMT_YUV420P. I want to understand in what range of values is this data located.

    


    Seems UV (in YUV scheme) must be in [-128, 128] range, CbCr (in YCbCr) must be in [0, 255]. What scheme used in FFmpeg ?