Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (106)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (7275)

  • Encoder for FLV ffmpeg

    13 mars 2014, par user2171669

    I need to grab desktop and write it to FLV video using ffmpeg. I need low CPU usage, but also need text to be recognizable.

    Also I see, that many players (f.e. OSFLV) doesnt support H264 FLV.

    1. Which codec should I choose ?

    2. Which encoder should I use ?

    See please (http://en.wikipedia.org/wiki/Flash_Video, 'Support for audio and video compression formats in Flash Player and in Flash Video' TABLE).

    If I am wrong somewhere (I am newbie), forgive me please. Thanks in advance.

  • ffmpeg only shows one Image ?

    8 juillet 2021, par m_so99

    Here are the images I have in my folder :

    


    img001.png
img002.png


    


    They are stored in c:/frames.

    


    Because that my frames are not shown correctly, used the FPS filter video shown below (documentation from https://trac.ffmpeg.org/wiki/Slideshow) :

    


    ffmpeg -r 1/5 -i img%03d.png -c:v libx264 -vf fps=25 -pix_fmt yuv420p out.mp4


    


    I tried running on my VLC media player but it still doesn't work. It only shows one image.

    


  • How to convert High bitrate MP3 to lower rate using FFmpeg

    28 mars 2024, par user4571931

    We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.

    



    ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3


    



    Result :-the output bitrate same as input mp3.

    



    And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3

    



    so please suggest any solution.