Recherche avancée

Médias (91)

Autres articles (14)

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

  • 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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (3651)

  • Get Album Art of a music using ffmpeg in Webp

    5 janvier 2023, par Arihant Jain

    I am struggling to output thumbnail of an mp3 file in webp format

    


    Tried this but it did not worked for .webp

    


    I am running this command in AWS lambda function to extract album Art and save in S3.

    


    ffmpeg -i input.mp3 -an -vcodec copy cover.webp

    


    enter image description here

    


    Any help would be appreciated.

    


    Reference : link

    


  • (FFMPEG) Merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ?

    24 décembre 2022, par user335844

    Is it possible to merge MP3 music with metadata and lossless WAV music without metadata into FLAC music with metadata ? Thanks.

    


  • Why is adding background music to video using `ffmpeg -i input.mp4 -i music.mp3 output.mp4` not working ?

    16 novembre 2022, par mayank1513

    I explored google and StackOverflow for how to add background music to the video and many of them suggested to use

    


    ffmpeg -i input.mp4 -i audio.mp3 -shortest output.mp4


    


    I have been trying to achieve this but it just does not work. When I try to add map like

    


    ffmpeg -i "input.mp4" -i bg.mp3 -map 0:v:0 -map 1:a:0 oo.mp4


    


    The video sound is replaced by the bg.mp3

    


    And if I try -map 0 -map 1:a:0 or not provide map, the audio is not added at all.

    


    How do I add the background music ? I don't also get any error.