Recherche avancée

Médias (91)

Autres articles (104)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (12825)

  • How to add audio at specific time on video using ffmpeg ?

    21 septembre 2018, par daxter

    I want to add audio on new created video.
    In this, i have want to add the on specific time duration using ffmpeg.

  • how to change ffmpeg time format information ? [closed]

    15 décembre 2024, par Martin Martin Calden Calden

    I am using the freezedetect filter and the time format keeps appearing as seconds. that is really bothering me because I need to calculate it to minutes for editing and it takes time.
how can I change the default time format to hh:mm:ss ?
this is the command I use to detect freezeframe :

    


    ffmpeg -i freeze.mp4 -vf "freezedetect=n=-60dB:d=1" -map 0:v:0 -f null -


    


    I am not really understand how to change it. and this is the result :

    


    


    [freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_start :
348.958008 [freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_duration : 1.041667 [freezedetect @
0000025e6b92ee80] lavfi.freezedetect.freeze_end : 349.999674
[freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_start :
468.791341 [freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_duration : 1 [freezedetect @
0000025e6b92ee80] lavfi.freezedetect.freeze_end : 469.791341
[freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_start :
1127.083008 [freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_duration : 1.041667 [freezedetect @
0000025e6b92ee80] lavfi.freezedetect.freeze_end : 1128.124674
[freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_start :
1753.166341 [freezedetect @ 0000025e6b92ee80] lavfi.freezedetect.freeze_duration : 1 [freezedetect @
0000025e6b92ee80] lavfi.freezedetect.freeze_end : 1754.166341

    


    


  • Compare two audio files and detect out of sync time

    15 décembre 2016, par kostya572

    I have two very similar audio files, but second audio file is out of sync for several seconds. I allready used :

    ffmpeg -i audio1.wav -itsoffset 0.67

    If i use this solution everytime i need manualy check delay time.
    How can i make this operation automatically ? Is there any waveform comparing software that can detect at what second i need set "itsoffset" ? Thank you.