Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (57)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8478)

  • 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

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

    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

    (This first command has "data-re" which just works on linux, but it is the only way I found to get the .klv I need)

    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