Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (78)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8418)

  • How to i add a background music to a video in React Native ?

    23 août 2023, par James

    How do I add background music to a video in React Native ? using ffmpeg-kit ? https://github.com/arthenica/ffmpeg-kit/tree/main/react-native

    


    I have a video in my project root folder, But the audio I want to add is a remote URL stored in the cloud music link is https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4

    


    Can anyone give me a basic example to do this in React Native ?

    


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