
Recherche avancée
Autres articles (48)
-
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. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si 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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (8984)
-
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 ?


-
How to include FFMPEG functions in android code
4 janvier 2013, par TharakaNirmanaMy aim is to build a video file by combining an audio clip and an image for android.
Using cygwin, I was able to create the video by combining an image and an audio clip as follows :
ffmpeg -i allmapeople.mp3 -i Penguins.jpg video_finale.mpg
But I want this to happen in the mobile device within my eclipse project.
Please tell me how this should be done.....
-
Can I detect duplicated videos using ffmpeg ?
28 décembre 2020, par TobiasIs it possible to detect duplicate videos (.mp4 files) using ffmpeg (or similar tools) ?


There are around 3000 videos in my file system, some of them twice (since these are automatically downloaded by a bot from various sources). So it can happen that these differ a little from the video / audio quality.


My first idea now would be to render the videos to a quality that is consistent and store the MD5 hash of the file in the database. There I would check for duplicate hashes.


Is this the right approach or does anyone have an idea how I could best implement this ?