Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (91)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La 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 (...)

Sur d’autres sites (10378)

  • Find Percentage of difference between two Videos Using FFMPEG

    8 octobre 2020, par Jai

    I am working with Video comparison using FFmpeg on Java. I have videos name "video1 and Video2". I can find the difference between two video using FFmpeg.

    


    It shows the result Video with difference. But here I want to find how many percent (IE : 20%) Video1 different from Video2. How to achieve this ?

    


  • Can ffmpeg perform difference matte keying ?

    31 juillet 2020, par Michael

    Is it possible to do difference matte keying with ffmpeg ? Specifically, I have three inputs, a static image showing a background, and two video streams. I want to replace every pixel in the first video stream that matches the corresponding pixel in the static image with the pixel in the second video stream.

    


    I have looked through some of the filters and see colorkey and chromakey, but those require a fixed color range in the background for replacement.

    


  • What is the internal difference between these two modes when getting the psnr value using ffmpg ?

    9 juillet 2020, par peter12
      

    1. Option : -psnr as H264 parameter
    2. 


    


    ffmpeg -i input.mp4 -vf -codec:v libx264 -psnr -f mp4 -b:v 100k -pass 1 output.mp4

    



    

      

    1. Option : Comparing input and output with the psnr filter.
    2. 


    


    ffmpeg -i input.mp4 -vf -codec:v libx264 -f mp4 -b:v 100k -pass 1 output.mp4
ffmpeg -i output.mp4 -i input.mp4 -filter_complex psnr -f null –