
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (52)
-
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 -
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 -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (11429)
-
Fix newlines
30 mars 2018, par RobLoachFix newlines
-
Fix commit ID.
23 octobre 2018, par blueimpFix commit ID.
-
FFMPEG creates different output when overlaying the same image in jpg and png
3 novembre 2020, par Cvetelin AndreevI'm having a different output when overlaying a video over png and jpg. I like what I get with the png, but my app is using user's images to overlay an animation on top and I don't have control over the image so sometimes users get different colors than expected. How can I avoid this ?


I'm using the following command to overlay video onto image :


ffmpeg -y -i white.png \
-i video.mov \
-filter_complex "[1:v][0:v]scale2ref='iw:ow/mdar'[scaled-overlay][image];\
[image][scaled-overlay]overlay[filtered]" \
-map "[filtered]" output.png.gif



The video is an animation done with AE exported in Quicktime PNG.
The image is generated with ImageMagick's convert :


convert -size 500x500 xc:white white_500.png



The result is fine. However if I use the same command with a JPEG image (white, 500x500 downloaded from the Internet) the colors of the results are different (appear darker) :



It works fine with JPEG generated with ImageMagick.


All files and script here : https://drive.google.com/drive/folders/1GEA1ho_i-rcYY-OJcxgiUuBnGUoqiTkf?usp=sharing


Thank you for your time !