Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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 2013

    Puis-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, par

    Lorsque 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 RobLoach
    Fix newlines
  • Fix commit ID.

    23 octobre 2018, par blueimp
    Fix commit ID.
  • FFMPEG creates different output when overlaying the same image in jpg and png

    3 novembre 2020, par Cvetelin Andreev

    I'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) :
demo of the different output

    


    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 !