
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (79)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le 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 (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (8787)
-
ffmpeg : How to concat audio files and add background music in a single command ?
7 décembre 2016, par harishkumar329Need 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.
-
How do I use ffmpeg on linux for my discord music bot ?
7 mars 2023, par DioI 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 !


-
How to i add a background music to a video in React Native ?
23 août 2023, par JamesHow 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 ?