
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (102)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6254)
-
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 ?


-
avformat/matroskaenc : Remove redundant check
20 avril 2019, par Andreas Rheinhardtavformat/matroskaenc : Remove redundant check
All places where end_ebml_master_crc32_preliminary are used already
check for whether the output is seekable, so the check in the function
is redundant.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
avcodec/wavpack : Avoid undefined shift in get_tail()
18 décembre 2022, par Michael Niedermayeravcodec/wavpack : Avoid undefined shift in get_tail()
Fixes : left shift of 1208485947 by 1 places cannot be represented in type 'int'
Fixes : 54058/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVPACK_fuzzer-5827521084260352Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>