Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (48)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (8576)

  • avformat/utils : free AVStream.codec properly in free_stream()

    21 avril 2017, par Aaron Levinson
    avformat/utils : free AVStream.codec properly in free_stream()
    

    Fixes memory leaks.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c
  • lavc/decode_video() : always unref the frame if there is no output in decode_video

    29 novembre 2013, par Anton Khirnov
    lavc/decode_video() : always unref the frame if there is no output in decode_video
    

    Not just on failure. This is the same thing that is done in the audio
    path and should prevent leaks in decoders that allocate a frame, but
    then end up not writing into it.

    • [DH] libavcodec/utils.c
  • How to display a frame number on each frame of a video using ffmpeg ?

    11 mai 2022, par igorg

    The test command I have is as follows :

    &#xA;&#xA;

    ffmpeg -i in.mov -vf "drawtext=fontfile=/usr/share/fonts/ttf-bitstream-vera/Vera.ttf: x=(w-tw)/2: y=h-(2*lh)-n: fontcolor=white: fontsize=40: box=1: boxcolor=0x00000000@1: text=" -an -y out.mov&#xA;

    &#xA;&#xA;

    I want to display the frame number on each frame. However, setting the "text" variable to "n" does not help (it displays n) and %n seems to be the new line symbol. The thing that confuses me most is that this part

    &#xA;&#xA;

    y=h-(2*lh)-n&#xA;

    &#xA;&#xA;

    works well, meaning it gets the right value of the current frame and moves the text up accordingly.

    &#xA;