Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (36)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7143)

  • avfilter/buffersink : replace init_opaque by init

    6 décembre 2019, par Zhao Zhili
    avfilter/buffersink : replace init_opaque by init
    

    The argument 'opaque' is always NULL since 0acf7e2 (2013),
    and avfilter_init_filter() was removed in 52067b3c0e (2016).

    • [DH] libavfilter/buffersink.c
  • Revision cc00eea676 : Replace best_ref_index table fetch with best_mbmode This commit replaces the be

    15 septembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Replace best_ref_index table fetch with best_mbmode

    This commit replaces the best_ref_index table fetch with the use
    of best_mbmode in vp9_rd_pick_inter_mode_sub8x8.

    Change-Id : I882ee9ee6a8c0e61befcca1f4dba6d2ea8de8f13

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

    



    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

    



    To do this, I have tried the following

    



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


    



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

    



    Is there any way to achieve this within ffmpeg ?