Recherche avancée

Médias (91)

Autres articles (51)

  • 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

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4768)

  • How to remove or attenuate background noise in videos

    20 août 2019, par David

    Tried removing typical background noise (low volume TV, indoor and outdoor air-conditioner/fan) from videos using following code. Didn’t work. Would appreciate advice on how to do this.

    ffmpeg -loglevel warning -y -strict -2 -i IN.mts -af "highpass=f=200, lowpass=f=3000" OUT.mts

    SHORT SAMPLE VIDEOS :

    low volume TV in background :
    https://youtu.be/wOQuKgDeC5A

    Inside air conditioner or fan :
    https://youtu.be/BTDFtH3vksY

    Outside air conditioner :
    https://youtu.be/EeSyKM25Gig

  • Hi, I am struggling with batch converting a whole files of videos to a new frame rate using ffmpeg ?

    31 octobre 2023, par Josie

    I am using this to convert videos. I would like to be able to convert more than video at once in a natch conversion. I am currently using the below code to do one video, but I am struggling to adjust it to make it so it can do more than one at once. Does anyone know how ?

    


    ffmpeg -i “filename.mp4” –vf "fps=5,scale=640:360" “fileconverted.mp4”

    


  • add watermark and merge videos programmatically [on hold]

    14 septembre 2017, par Suriya Rakhunathan

    I am working on a node js project where i need to combine multiple videos to a single file and add watermark to the final video. I have tried using ffmpeg to achieve this functionality. But still facing some issues.

    Is it possible if any type of video formats like mp4, mpeg, avi to be handled ?

    Can this be achieved completely using node js or equivalent frameworks or should I use other languages like java, python..

    Please help me if any one have worked on such scenarios earlier and have some idea on this. I will post my current research status and points as i progress.

     Suriya