
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (67)
-
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 -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (11714)
-
Replicate audio/video from another video [closed]
25 mars 2020, par thatPranavI have two videos, say, video-1 and video-2 and I wish to convert video-1 format exactly like video-2.
-
Create video trailer (mp4) with FFMPEG and PHP from long mp4 video [on hold]
23 octobre 2015, par user1887681i have a video site and i want to make trailers for all videos.
ie I have to make a 12 second video from 4 randomly increments of 3 seconds each from the full video.Has anyone tried it ?
-
FFMPEG Overlay one video on top of another video at specific location
11 août 2018, par Ewan SouI have two videos (in mp4 format). I would like to put one video on top of the other video
- Both videos have the same duration
- The bottom video is of resolution 640px by 640px
- The top video is also of resolution 640px by 640px
I need to scale down the top video resolution to 580px by 580px. Then I need to position it in a specific location on top of the bottom video.
I tried the below quote
ffmpeg -i bottom.mp4 -i top.mp4 -filter_complex "[0:0][1:0]overlay=enable='between(t\,0,50)'[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -dn -c:v libx264 -crf 18 output.mp4
It does allow me to put the top video on top of the bottom video I think. But the top video was not scaled down in size. Also, this top video is by default on the top left corner of the bottom video.
In additional, somehow, the very first frame will not show the top video at all. Only at around the 0.5sec will the top video appear. Is there any way to make it such that the top video is showing at the very first frame too ?
Thank you all in advance !