Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (58)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • avcodec/ratecontrol : replace asserts by av_asserts

    31 janvier 2015, par Michael Niedermayer
    avcodec/ratecontrol : replace asserts by av_asserts
    

    Also remove the now unneeded #include <assert.h>

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/ratecontrol.c
  • lavc/nellymoserdec : replace pow by exp2

    10 décembre 2015, par Ganesh Ajjanagadde
    lavc/nellymoserdec : replace pow by exp2
    

    exp2 suffices here.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/nellymoserdec.c
  • How do you replace audio at a given timestamp with ffmpeg ?

    29 août 2022, par Ed George

    I am trying to use the ffmpeg library to take two FLAC files and replace the audio in File A with the audio in File B at a given timestamp.

    &#xA;&#xA;

    For example if File B was to be played at 00:02 and was a second long, playing the output it would be (00:00-0:01) File A Audio -> (00:02-0:03) File B Audio -> (00:04-...) File A Audio

    &#xA;&#xA;

    To do this, I have tried the following

    &#xA;&#xA;

    ffmpeg -y -i original.flac -i replacement.flac -acodec copy -ss 2 -to 3 -write_xing 0 result.flac&#xA;

    &#xA;&#xA;

    But this only produces the original audio between the specified timestamps.

    &#xA;&#xA;

    Is there any way to achieve this within ffmpeg ?

    &#xA;