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 (2869)

  • How do I use ffmpeg on linux for my discord music bot ?

    7 mars 2023, par Dio

    I made a discord music bot a while back for me and my friends to use(it is minimalistic), but I recently switched from windows to Linux. I was using FFMPEG for my bot(the .exe file was in the same folder as the code).
I'll leave the Github link to my bot down here :

    


    https://github.com/Dorian1997/Discord-Bot

    


    Now my question is, do I have an alternative to FFMPEG on Linux ? Or how exactly should I install FFMPEG for it to work right ? I already installed it from the terminal, yet it doesn't seem to work as the bot cannot play anything.
Thank you for your time !

    


  • ffmpeg : How to concat audio files and add background music in a single command ?

    7 décembre 2016, par harishkumar329

    Need to concat audio files and add background music in a single command.

    Right now I use the following commands to do so,

    To concat :

    ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -i 5.mp4 -i 6.mp4 -i 7.mp4 -i 8.mp4 -i 9.mp4 -i 10.mp4  -filter_complex '[0:0][1:0]concat=n=10:v=0:a=1[out]'  -map '[out]' -strict -2 -y 10_final.mp4

    To add background music :

    ffmpeg -i 10_final.mp4 -i music.mp4 -filter_complex "[0:a]volume=1dB[a0];[1:a]volume=0.5[a1];[a0][a1]amerge=inputs=2[a]" -map "[a]" -ac 1 -ab 32000 -ar 22050 -strict -2 -y 10_with_music.mp4

    But his process is a quite time-consuming process as every time the file read/write happening to the output.

    Is there a way I can merge these two above commands to a single so that the command should be optimized.

  • I have to configure background music and voice with ffmpeg such that whenever voice will play background music volume will be less than voice ?

    18 janvier 2023, par Namrata Bandal

    creating dynamic volume changes in an audio file where the voice is playing, and the voice should be played at 100% volume throughout the duration of 4-16 seconds while the background music's volume changes between 4-8 seconds from 100% to 20% linearly, 8-12 seconds hold the volume at 20% and 12-16 seconds change the volume from 20% to 100% linearly after 16 seconds hold the volume at 100% and 4-16 seconds voice should be hold volume at 100% in ffmpeg command