Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (50)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (9662)

  • FFMPEG amix filter volume issue with inputs of different duration

    2 août 2016, par cupuyc

    I noticed that ffmpeg amix filter doesn’t output good result in specific situation. It works fine if input files have equal duration. In that case volume is dropped in constant value and could be fixed with ",volume=2".

    In my case I’m using files with different duration. Resulted volume is not good. First mixed stream resulted in lowest volume, and last one is highest. You can see on image that volume is increased linearly withing a time.

    enter image description here

    My command :

    ffmpeg -i temp_0.mp4 -i user_2123_10.mp4  -i user_2123_3.mp4  -i user_2123_4.mp4  
    -i user_2123_7.mp4  -i user_2123_5.mp4  -i user_2123_1.mp4  -i user_2123_8.mp4  
    -i user_2123_0.mp4  -i user_2123_6.mp4  -i user_2123_9.mp4  -i user_2123_2.mp4  
    -i user_2123_11.mp4 -filter_complex "[1:a]adelay=34741.0[aud1];
    [2:a]adelay=18241.0[aud2];[3:a]adelay=20602.0[aud3];
    [4:a]adelay=27852.0[aud4];[5:a]adelay=22941.0[aud5];
    [6:a]adelay=13142.0[aud6];[7:a]adelay=29810.0[aud7];
    [8:a]adelay=12.0[aud8];[9:a]adelay=25692.0[aud9];
    [10:a]adelay=32143.002[aud10];[11:a]adelay=16101.0[aud11];
    [12:a]adelay=40848.0[aud12];
    [0:a][aud1][aud2][aud3][aud4][aud5][aud6][aud7]
    [aud8][aud9][aud10][aud11]
    [aud12]amix=inputs=13:duration=first:dropout_transition=0"
    -vcodec copy -y temp_1.mp4

    That could be fixed by applying silence at the beginning and end of each clip, then they will have same duration and volume will be at the same level.

    Please suggest how I can use amix to mix many inputs and ensure constant volume level.

  • Révision 104154 : Ticket #3560 : Suppression de l’option expérimentale de compression des JS par g...

    4 mai 2017, par marcimat@rezo.net
  • Mp3 volume up and down within specific parts Android

    23 mai 2017, par Vivek Bhatt

    I want to alter the volume of an audio file(mp3) within specific parts.

    Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
    I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer duration

    ffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3

    Is there any other way around which is bit quick.

    Thanks in advance