Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (52)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6746)

  • Supporting HEVC/H.265 videos in Electron

    1er mars 2021, par Elmo

    Chrome/Electron don't normally support H.265 videos. I want the user to be able to play .mov files recorded by Apple devices in my app. How can I do this ?

    


    Possible approaches :

    


      

    1. Use ffmpeg to transcode to H.264 in real-time, which will be resource intensive (not ideal)
    2. 


    3. Use WebAssembly to render the video in a <canvas></canvas> tag (not ideal)
    4. &#xA;

    5. Fork and manually add H.265 codec support to Chrome/Electron (overkill)
    6. &#xA;

    7. Use a native module that renders the video in a <canvas></canvas> or BrowserView
    8. &#xA;

    &#xA;

  • Why psnr & ssim values generated by ffmpeg is different those generated by H264

    3 juin 2019, par Ceyhun Çakar

    I am getting generated mp4 video stream from input stream (mxf or mov), and when doing this I am using -psnr as H264 parameter. The result is approx. 40 or 41.

    Then I am comparing input and output with psnr (or ssim) filter. Results approx. 20 or 21. It is a big difference. Is there anyone know the reason of this difference ?

    Note : ssim result is similar. First is 0.97, the second is 0.83

    PSNR

    ffmpeg -i input.mov -codec:v libx264 -psnr -f mp4 output.mp4
    PSNR (~40)

    ffmpeg -i output.mp4 -i input.mov -filter_complex psnr -f mp4 /dev/null
    PSNR (~20)

    SSIM

    ffmpeg -i input.mov -codec:v libx264 -ssim -f mp4 output.mp4
    SSIM (~0.98...)

    ffmpeg -i output.mp4 -i input.mov -filter_complex ssim -f mp4 /dev/null
    PSNR (~0.83...)
  • Why psnr & ssim values generated by ffmpeg is different those generated by H264

    23 novembre 2015, par Ceyhun Çakar

    I am getting generated mp4 video stream from input stream (mxf or mov), and when doing this I am using -psnr as H264 parameter. The result is approx. 40 or 41.

    Then I am comparing input and output with psnr (or ssim) filter. Results approx. 20 or 21. It is a big difference. Is there anyone know the reason of this difference ?

    Note : ssim result is similar. First is 0.97, the second is 0.83

    PSNR

    ffmpeg -i input.mov -codec:v libx264 -psnr -f mp4 output.mp4
    PSNR (~40)

    ffmpeg -i output.mp4 -i input.mov -filter_complex psnr -f mp4 /dev/null
    PSNR (~20)

    SSIM

    ffmpeg -i input.mov -codec:v libx264 -ssim -f mp4 output.mp4
    SSIM (~0.98...)

    ffmpeg -i output.mp4 -i input.mov -filter_complex ssim -f mp4 /dev/null
    PSNR (~0.83...)