
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (90)
-
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 ;
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
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 (15483)
-
How to extract transparent images in video with FFMPEG
17 avril 2021, par El ŠidëyøusšI have an Mp4 video with a black background, I managed to extract the images from the video with Ffmpeg but these images have a black background I would like to know how to make these images transparent, if it is possible with FFmpeg, thanks for your help


-
FFMPEG filter instances names don't work with "sendcmd" ?
13 septembre 2023, par VladStepu2001I have two
drawbox
filter instances that I need to animate separately.

I've usedsendcmd
for the one instance already, and it worked fine.

But when I've added the second one, I gave a name to both of them like this :


drawbox@one=0:0:iw:ih:red:fill,drawbox@two=0:0:iw:ih:black:fill



Then, I've tried to use
sendcmd
like this :

drawbox@one=0:0:iw:ih:red:fill,drawbox@two=0:0:iw:ih:black:fill,
sendcmd=c='0.0-5.0 [expr] drawbox@one w W*(T/5)
 0.0-5.0 [expr] drawbox@two h H*(T/5)'



But that didn't work, the rectangles stayed still.


What I am doing wrong ?


-
FFMPEG : add multiple drawtexts, vertically stacked, to a video
21 septembre 2020, par Ali DoggazI wish to add several texts to a video. The texts should be vertically aligned, in the top center of the video.
here is what I tried for now :


n = len(titles) #Titles a list containing all the texts we will add to the video
p = 0
for text in titles:
 os.system(
 fr'ffmpeg -i output{p}.mp4 -filter:v drawtext="fontfile=Lato- 
 Black.ttf:fontcolor=black:fontsize=60:text=' + f"'{text}':" + f'y=200-{(n-p) * 62}:x=(w- 
 text_w)/2"-y output{p + 1}.mp4')
 p = p + 1



As you can see, all the texts should have x=(w- text_w)/2 as their abscissa (which is constant ?), but they're never aligned. There is always a sort of padding that pushes the next text added, a bit more to the right.
I also tried to use x=w/2 which is constant and the texts are still not vertically aligned.