
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 (112)
-
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. -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11383)
-
tiff : fix linesize for mono-white/black formats
9 mai 2011, par Stefano Sabatinitiff : fix linesize for mono-white/black formats
-
How do I cut black frames from video with ffmpeg ?
13 mai 2020, par h0dgesI've got a timelapse video with overnight frames that are not illuminated and would like to know how to either :



- 

- Cut the black frames (
pblack=99
) out of the video AND correspondingly reduce the
length of the output video (i.e. not duplicate or interpolate frames) - Analyse the input images before generating the timelapse video in order to exclude the overnight images from the video.







Just to be awkward I'd like to use the
jrottenberg/ffmpeg
docker image.


This is the command I'm currently using to generate the timelapse video :



docker run -v timelapse-images:/images -v timelapse-videos:/videos jrottenberg/ffmpeg -y -f image2 -framerate 30 -pattern_type glob -i '/images/*.jpg' /videos/timelapse.mp4



- Cut the black frames (
-
How to crop bottom of video followed by removing black borders ?
9 mai 2018, par pmdalyI have video where there is a static bar on the bottom 50 pixels and also a black boarder around the actual content. I want to remove the bottom 50 pixels then use cropdetect to auto trim the border.
I have the following to remove the border
dims = $(ffmpeg -i "$video$ -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/{print $NF}' | tail -n1)
ffmpeg -i "$video" -vf "$dims" "$video_out"I’m not sure how to add the step to remove the bottom 50 pixels prior to this.