
Recherche avancée
Autres articles (80)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
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
Sur d’autres sites (15193)
-
FFMPEG - Can you overlay part of a video with a couple of images ?
22 août 2017, par AdamI need to add an overlay a video and I was wondering if there is an easy way to do this with FFMPEG.
I have a set of images (a banner and a portrait) which I would like to overlay at the bottom of my video for part of the duration of the video. For example, after about 5 seconds I would like the overlay to appear, and then about 5 seconds before the end of the video I would like to have the overlay go away.
Is this possible using FFMPEG command line options ?
-
FFMPEG slow / fast motion part a video anywhere
27 juin 2017, par Muhammad UmarI am trying to cut a part of Video
Here is the code i have tried
Let’s say i have 6 seconds video and i want to slow down 2:5 seconds video that 3 second videoFirst approach after searching is, Cut the video, then apply slow filter then concat it with original video. But this is a mid part not entire video. How can i modify below code
ffmpeg -i Soon.mp4 -filter_complex
[0:v]trim=2:5,setpts=PTS-STARTPTS[v1] ;[v1]setpts=0.5PTS[v1] ;[0:a]atempo=2[a]
concat=n=1:v=1:a=1 -map "[v]" -map "[a] -preset superfast -profile:v
baseline output.mp4 -
ffmpeg doesn't render a full url, not a protocol part
25 juin 2017, par JodimoroI want to render an url in a video via ffmpeg. This works well :
ffmpeg -i test.mp4 -vf drawtext="fontfile=[......]: text='example.com': [..........]
But this renders only the "https" and nothing else :
ffmpeg -i test.mp4 -vf drawtext="fontfile=[......]: text='https://example.com': [..........]
How to fix this ?