Recherche avancée

Médias (91)

Autres articles (106)

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

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (10172)

  • lavc/libvpxenc : handle queue desync more gracefully

    28 février 2023, par Anton Khirnov
    lavc/libvpxenc : handle queue desync more gracefully
    

    If the packets returned by libvpx and our internal frame properties
    queue get desynchronized for some reason (should not happen, but it is
    not clear libvpx API guarantees this), we will keep adding to the queue
    indefinitely and never remove anything.

    Change the code to drain the queue even if timestamps do not match.

    • [DH] libavcodec/libvpxenc.c
  • fftools/ffplay : do not write out of rdft visualization texture

    3 mars 2021, par Marton Balint
    fftools/ffplay : do not write out of rdft visualization texture
    

    If the window is resized it was possible that xpos pointed outside the
    visualization texture. By rearranging the overflow check we make sure this (and
    a crash) does not happen.

    We also don't have to use xleft for start position, as that is 0 anyways, and
    if we ever want to take into account xleft then the texture should be
    positioned accordingly when rendering.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffplay.c
  • ffmpeg didn't execute commands correctly - android

    18 mars 2016, par BOB

    I’m using ffmpeg to draw text on video, i following the instruction in http://hiteshsondhi88.github.io/ffmpeg-android-java/

    and i’m successfully install ffmpeg library in my application, but when i’m run any command it’s Start the process and appear this lines in android monitor

    Metadata :

    creation_time : 2016-03-03 14:29:38

    handler_name : Stereo

    Then nothing happen

    and create the output video with 00:00 byte and 00:00:00 time

    can any one help me to avoid this error

    I think it’s losing metadata while encoding

    My Command that i use is

    ffmpeg -i "+inputvid+" -vf enable-libfreetype \"drawtext=enable='between(t,12,3*60)':fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf:text='TestText'\" -acodec copy "+outvid+""

    Thanks