Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (58)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6347)

  • avformat/mpeg : move the header_str free into end label

    22 octobre 2019, par Steven Liu
    avformat/mpeg : move the header_str free into end label
    

    fix CID : 1454875

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/mpeg.c
  • avformat/hlsenc : free options fix memleak in hls_write_trailer

    12 mai 2020, par Steven Liu
    avformat/hlsenc : free options fix memleak in hls_write_trailer
    

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c
  • Ffmpeg : mixed audio is played louder and louder, how to set a constant intensity ?

    29 août 2020, par JarsOfJam-Scheduler

    I have these items :

    &#xA;

      &#xA;
    • A video (my_video_with_music.webm)
    • &#xA;

    • Three sounds (tmp_music/forest_15s.wav, tmp_music/forest2_15s.wav and tmp_music/creak_15s.wav)
    • &#xA;

    • A background music (tmp_music/original_music.mp3)
    • &#xA;

    &#xA;

    I mix all these files in two steps. First, I mix the video with the background music. Then, I mix this output with the sounds. A video with the music and the sounds, let name it "THE_VIDEO", is output.

    &#xA;

    My problem is that "THE_VIDEO" increases in loudness along the video. At the beginning, it's not very loud. At the end of the video, it's very loud. I don't know why. I would want to have a constant loudness (not too loud, not too low).

    &#xA;

    How can I do it ? Note that the original music file and sounds files don't increase in loudness : they have themselves a constant intensity. So it's actually FFMPEG that increases it when mixing them with the video.

    &#xA;

    Sources

    &#xA;

    Mixing the background music with the video (this command doesn't trigger the bug !) :

    &#xA;

    C:/Users/x/Downloads/ffmpeg/bin/ffmpeg.exe -i my_video.webm -stream_loop -1 -i tmp_music/original_music.mp3 -c:v copy -shortest -fflags &#x2B;shortest -max_interleave_delta 100M  my_video_with_music.webm&#xA;

    &#xA;

    Adding the sounds (this is the command that triggers the bug !) :

    &#xA;

    C:/Users/x/Downloads/ffmpeg/bin/ffmpeg.exe -i my_video_with_music.webm -i tmp_music/forest_15s.wav -i tmp_music/creak_15s.wav -i tmp_music/forest2_15s.wav -filter_complex [1]adelay=7000|7000[a1];[1]adelay=37000|37000[a2];[1]adelay=88000|88000[a3];[2]adelay=118000|118000[a4];[0][a1][a2][a3][a4]amix=5 -c:v copy my_video_with_music_with_songs.webm&#xA;

    &#xA;