
Recherche avancée
Autres articles (106)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa 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 (9058)
-
How to display name and phone number of a student as dynamic watermark (randomly floating on entire screen) in videos of a paid online video course ?
22 mai 2020, par ArjunI wish to make a Learning Management System using PHP-MySQL and wish to put videos from my computer or embed YouTube videos on it.



Videos will be displayed to only those students who have paid for the course.



I want to show their name and phone number (which they'll be giving during Sign Up) as a dynamic watermark floating randomly on all the videos of that course to prevent screen capturing of the video.



How to do it and how to call those Name and Phone Number values from the MySQL database ?


-
how to concat two videos in ffmpeg with adelay ?
4 janvier 2023, par SMARTi have 2 videos : outs.mp4 & V2.mp4 .


outs.mp4 is 4 seconds long (no audio).


V2 is 30 seconds long with audio .


now , i want to concat these files ,when i concat , 2nd video's audio is playing at 00:00:00 . what i want is 2nd video's audio should start play after 4 seconds, 00:00:04.002 . so tried this command ,but it runs forever .


ffmpeg -i outs.mp4 -i V2.mp4 -filter_complex "[0:v][1:v]concat=n=2 [v] ;[1:a]adelay=4s [a] ;[a]amix=inputs=1 [a1]" -map "[v]" -map "[a1]" -y output.mp4


what to do ? how to concat 2 or more videos (with or without audio) [audio should match with the video] in ffmpeg ?


-
[SOLVED]how do I apply watermark on multiple videos in the current directory with ffmpeg
22 octobre 2017, par Ariane Martins Gomes Do RegoLinux + ffmpeg
I have a folder with 300 videos. I need to apply the same watermark on all these videos, so in the folder I have 300 video files + 1 png file which is my watermark, how do I convert all with different names, so that the next file does not overwrite the previous one ?
Answer :
for f in *.mp4; do ffmpeg -i "$f" -i watermark.png -filter_complex 'overlay=10:10' -strict -2 "$f-marked.mp4"; done
Thank you so Much. [SOLVED]