Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (63)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7317)

  • avfilter/asrc_flite : Fix races upon (un)registering voices

    6 octobre 2021, par Andreas Rheinhardt
    avfilter/asrc_flite : Fix races upon (un)registering voices
    

    The voice registration system in libflite is broken : It is not
    thread-safe and also not based on internal counters ; instead
    any call to unregister a voice frees said voice even if there are still
    many other users of said voice who have also registered said voice.
    While there is no way to guard against another library unregistering
    voices behind our back, we can at least be correct in the absence of
    other users of libflite. The current code already tried this by using
    a reference count of our own for each voice ; but the implementation
    of this is not thread-safe at all.

    Fix this by using a mutex to guard all of libavfilter's libflite
    registration and unregistration calls, thereby being thread-safe
    in the absence of other libflite users.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/asrc_flite.c
  • Révision 22024 : Interface modernisée (plus “flat”).

    28 avril 2015, par ARNO- -

    Vignettes des articles dans les listes d’articles nettement plus grandes. Du coup, ajout des surtitre/soustitre dans les listes. Les listes deviennent ainsi plus prégnantes, l’interface plus moderne.

  • concat 2 mini audio files and make a loop and add a background music

    11 octobre 2020, par Johny Sharma

    I Need to concatenate 2 small audio files with loop and add background music in a single command.

    &#xA;&#xA;

    I am capable to concatenate two audio files with a background music. My above given code is working.

    &#xA;&#xA;

    ffmpeg -i 1.mp3 -i 2.mp3 -i background.mp3 &#xA;-filter_complex "[0:0][1:0]concat=n=2:v=0:a=1,volume=1dB,aformat=fltp, pan=stereo|c0=c0|c1=c0[a0]; &#xA;[2]volume=0.5dB,aformat=fltp,pan=stereo|c0=c0|c1=c1[a1];[a0][a1]amix=inputs=2:duration=longest,aformat=fltp[a]"&#xA;-map "[a]" -strict -2 -y output.mp3&#xA;

    &#xA;&#xA;

    but i want to a make a loop of the concatenated files till the end of the background music. background music is longer than approx 5 times from concatenated files.

    &#xA;&#xA;

    If someone can suggest a single command solution.

    &#xA;&#xA;

    I know about amovie tag but unfortunately its not possible to use in here because amovie requires file name which is not possible with concatenated files as per my knowledge.

    &#xA;&#xA;

    Can anyone help me how can i achieve my goal !

    &#xA;&#xA;

    Thanks

    &#xA;