
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (11250)
-
avfilter/vf_pad : revert part of 57c3670896c69714ca
12 mai 2017, par Paul B Mahol -
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 ?
-
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