Advanced search

Medias (1)

Tag: - Tags -/intégration

Other articles (83)

  • Participer à sa traduction

    10 April 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 (...)

  • Automated installation script of MediaSPIP

    25 April 2011, by

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Personnaliser les catégories

    21 June 2013, by

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

On other websites (5824)

  • Write silence audio data into file ffmpeg C++

    14 August 2015, by 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 April 2019, by 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 March 2021, by Валентин Никин

    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?