
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (88)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (11912)
-
When I used ffmpeg, this problem occurred. I installed ffmpeg —enable-openssl, I don't know why
6 septembre 2022, par user16592167

When I used ffmpeg, this problem occurred. I installed ffmpeg —enable-openssl, I don't know why


-
Revision 7194da2167 : Merge "Fixing display size setting problem."
24 août 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/decoder/vp9_decodframe.c
Merge "Fixing display size setting problem." -
How do I make my Discord Bot play mp3 files, while in a voice Channel ? (FFMPEG problem)
27 mars 2019, par João PimentaI’m trying to make a bot that joins the voice channel, plays a mp3 file from my computer, and leaves the channel afterwards.
It "does" work, joins, leaves, but it doesn’t plays any sound, sometimes it produces static-like noises though, which made me think it is a FFMPEG problem.
I’m on a ubuntu 16.04.
I have tried changing the way I show the function what the path is for my .mp3 file. I came to the conclusion that
('/home/user/djsBot/01.mp3');
is the correct way to do it (the documentation asks for an absolute path), because I thought it wasn’t able to locate my file.I have also tried uninstalling and installing ffmpeg-binaries, same for node-opus, both of which give me moderate vulnerability reports (not sure what this means) and tell to run
npm audit fix
.I’m somewhat new to ubuntu, and a complete beginner on JS and Node.JS, so any tips or clarification are welcome. :)
client.on('message', (msg) => {
if (msg.content === '1') { // user types '1' to play a sound
if (msg.member.voiceChannel) {
msg.member.voiceChannel.join() // bot joins user's channel
.then(connection => {
const dispatcher = connection.playFile('/home/user/djsBot/01.mp3');
dispatcher.on("end", end => {
msg.member.voiceChannel.leave();
});
}).catch(err => {
console.log(err);
});
}
else {
msg.channel.send(`You must be in a Voice Channel for me to talk to you, ${msg.author.username}!`);
}
}
});