Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • 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

Sur d’autres sites (9001)

  • Is there a FFMPEG C# Wrapper with multiple filters ?

    7 juin 2021, par AfricanMamba

    Does anyone happen to know if FFMPEG or any other sources has a wrapper that I can use in C#/.NET to run certain filters ? Filters that I am trying to run on different audio files in my program include silenceremove, silencedetect, volumedetect, and etc. I want to avoid using just the .exe file that I already have when implementing this in my program.

    


    I have looked through several forums and online resources and found one called MediaTookKit, but it lacks the filters that I am attempting to use. If anyone knows of one that already exists or can provide me with steps to make my own wrapper using certain FFMPEG filters, it would greatly help.

    


  • Quicky output selection of video frames using ffmpeg

    1er décembre 2016, par Shaun

    I would like to extract, say, 10 video frames from a given video file using ffmpeg, ideally uniformly distributed throughout the video. I know this can be done in a few ways, for example

    ffmpeg -i input.mp4 -vf fps=1/10 out%03d.jpg

    will output one image every 10 seconds. However, this is too slow for my liking and scales proportionally with the length of the video. I have read a bit about ffmpeg’s seeking capability, for example

    ffmpeg -ss 00:00:05 -i input.mp4 -frames:v 1 out001.jpg

    will very quickly seek to the 5th second of the video and extract one frame. However I haven’t come across a way to seek to multiple locations in the video without calling the above command repeatedly at various times.

    Is there a quicker way of accomplishing this ?

  • What is the difference between yuv420p and yuv420p(tv) ?

    9 novembre 2018, par Aleksandr Shemetillo

    I am trying to implement Fairplay ready browser player (Apple’s DRM).
    A stream that has h264(Main) yuv420p(tv) settings becomes non-working after drm decryption (crashed picture of green color). Converting again the video with a "Main" ffmpeg profile changes the setting to a simple yuv420 and this solves the problem.
    Please explain the difference.
    Or maybe some other changes I don’t see can happen during the conversion ?

    Of course, since we are talking about Fairplay, the problem is observed in Safari on Os X