Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (66)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9785)

  • Revision 31972 : Et maintenant on peut aussi importer les fichiers d’export. On peut aussi ...

    8 octobre 2009, par rastapopoulos@… — Log

    Et maintenant on peut aussi importer les fichiers d’export.
    On peut aussi supprimer entièrement un menu, ce qui n’était bizarement pas possible avant.
    Pour la peine, on hausse la version, parce que c’est une nouvelle fonctionnalité d’ajoutée.

  • lavc/hevcdec : do not pass a pixel format to set_sps()

    12 juin 2024, par Anton Khirnov
    lavc/hevcdec : do not pass a pixel format to set_sps()
    

    It is merely copied to AVCodecContext.pix_fmt, which serves no useful
    purpose. set_sps() is called from two places :
    * when a new SPS becomes active - then the pixel format is
    overridden immediately after the set_sps() call by the result from
    ff_get_format() ;
    * when a new SPS is propagated across frame threads - then the
    AVCodecContext value is already set to the same value by the generic
    code.

    • [DH] libavcodec/hevc/hevcdec.c
  • Ffmpeg to add watermark and username to videos like tiktok

    8 avril 2024, par hazem khairy

    I am trying to use ffmpeg to add watermark and username (dynamic input) to videos same as tiktok.

    


    Currently I have the following command which adds an image to video but the transition is moving from left to right, my goal to make it appear in random positions as tiktok, and also to add username under the logo but not sure how to make it happen.

    


    ffmpeg -i testvideo.mp4 -i logo.png -filter_complex "[1][0]scale2ref=w=iw/10:h=ow/mdar[logo][main];[main][logo]overlay=x='mod(t\,10)/10*W':y='if(lt(mod(t+2\,8)\,4)\,H-h-H*20/100\,H*20/100)'" -vcodec libx264 -crf 28 -preset faster -tune film  output_video_test.mp4


    


    I tried to use rand() function but received the following error

    


    Unknown function in 'rand(...)'


    


    How can I make log appear in random places and add dynamic user input (username) same as tiktok using ffmpeg ?
And if not possible can I achieve the end goal with other technology ?