Recherche avancée

Médias (91)

Autres articles (66)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11086)

  • lavr : return an error if a avresample_open() is called on an open context

    25 avril 2013, par Anton Khirnov
    lavr : return an error if a avresample_open() is called on an open context
    
    • [DBH] libavresample/utils.c
  • How to xfade an accelerated stream into a stream of unchanged speed

    9 mars 2024, par Matthias Simon

    How to xfade one stream, that was speed up with setpts into another stream using ffmpeg ?

    


    The natural approach would be :

    


    ffmpeg
 -i a.mkv
 -i b.mkv
 -filter_complex "
   [0:v]setpts=0.2*(PTS-STARTPTS)[A_OUT];
   [A_OUT][1:v]xfade=duration=2:offset=10[out]" 
 -map '[out]'
 out.mkv


    


    but this always results in a 5x speed up of the second stream during the 2sec transition time of xfade. In other words, during xfade, the PTS definition of the first stream is used for the second stream.

    


  • avcodec : Do not lock during open for codecs marked as having threadsafe init

    1er octobre 2015, par Derek Buitenhuis
    avcodec : Do not lock during open for codecs marked as having threadsafe init
    

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/utils.c