
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (68)
-
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 ;
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12911)
-
how to convert image sequences to video in R ?
15 janvier 2024, par yahya jandany body know how to convert some photo to video using FFMPEG ?
i use this code :


ffmpeg --framerate 1 -s 1080x1620 -i pictures/%03d.jpeg -vcodec libx264 -crf 25 output.mp4



i face this error :


Error: unexpected numeric constant in "ffmpeg -r 1"



Any body can help me ?


-
Accessibility to Web video for the Vision-Impaired
12 décembre 2010, par silviaIn the past week, I was invited to an IBM workshop on audio/text descriptions for video in Japan. Geoff Freed and Trisha O’Connell from WGBH, and Michael Evans from BBC research were the other invited experts to speak about the current state of video accessibility around the world and where (...)
-
FFmpeg avfilter drawbox, how to move the box position without reconstruction the filter,C++
19 juillet 2022, par CaiGiBearRefer to the example filtering_video.c,I want to draw a box on the video to track the position of the face.
In my C++ code,I set the filter_describe as


const char *str_filter_describe = "drawbox=x=10:y=10:w=100:h=100:color=yellow";



I try to change x,y,w,h before processing each frame,but it seems that setting these parameters requires reconstructing fliter.
Is there any way to move the position of the box without reconstructing the filter.