Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (31524)

  • 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

  • How to add silent data when no audio stream is flowing

    29 décembre 2020, par Edqe

    This is what I'm currently doing : How to insert silence pcm data when there is no data piping in

    


    Since fluent ffmpeg can use ffmpeg flags, is there a way to put silent data when no actual audio stream is received.

    


    Example :
    
/ represents real audio data
    
- represents silent
    
/////////////////-----///////----//////////
    
Receive audio    cut  data   cut data
    
From example above, put silent data on cut when no real data is received (I hope that explains a bit clearer)

    


    I found this discussion, does this work for the example above ? If so, how can I implement it ?

    


    Thanks in advance !