
Recherche avancée
Autres articles (60)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (7623)
-
Ffmpeg to add watermark and username to videos like tiktok
8 avril 2024, par hazem khairyI 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 ?


-
lavc/hevcdec : do not pass a pixel format to set_sps()
12 juin 2024, par Anton Khirnovlavc/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. -
avcodec/wmaprodec : Fixes integer overflow with 32bit samples
20 novembre 2019, par Michael Niedermayeravcodec/wmaprodec : Fixes integer overflow with 32bit samples
Fixes : left shift of 1 by 31 places cannot be represented in type 'int'
Fixes : 18860/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAPRO_fuzzer-5755223125786624Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>