Recherche avancée

Médias (91)

Autres articles (6)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3081)

  • Bot isn't playing music [closed]

    15 mai 2020, par DevTeddy

    My bot can join, but it isn't playing any music ! The code is written is Javascript, and I am using Discord.js , Node.js and FFmpeg. The prefix and token are in a seperate JSON file. There are no errors in the Console, though. Also, it says the "added song to queue" message twice, for some reason. I have already tried using VS Code's debugger and checked it for errors. Please help me !

    



    My code is at : https://github.com/Dev-Ted/ForestBot

    



    Thanks !

    


  • add background music to video using ffmpeg ?

    3 décembre 2019, par sibbasa

    I have a video file (mp4) with sound, how can I add background music to it ? Using ffmpeg.

    Example please :)
    I tried like this :

    ffmpeg -i son.wav -i video_origine.mp4 video_finale.mp4

    But this method muffles the main sound.

  • Mix voiceover and background music with delay and volume

    6 août 2019, par oldman

    I don’t master ffmpeg but I really need to mix a voiceover with a background song.

    The voiceover must start 5 seconds after the song, and must end 5 seconds before the song ends.

    The music volume must be loud for the first 5 seconds and the last 5 seconds, but during the voiceover it should remain low.

    Searching the internet, the closest I could come to my goal was this :

    ffmpeg -i music.mp3 -i voiceover.mp3 -filter_complex "[0]asplit[a][b]; [a]atrim=duration=5,volume='1-max(0.25*(t-13),0)':eval=frame[pre]; [b]atrim=start=5,asetpts=PTS-STARTPTS[song]; [song][1]amix=inputs=2:duration=shortest:dropout_transition=0[post]; [pre][post]concat=n=2:v=0:a=1[mixed]" -map " "[mixed]" output.mp3

    Could someone help me complete this script ?