
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (97)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Publier sur MédiaSpip
13 juin 2013Puis-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 (4761)
-
Anomalie #3082 (Nouveau) : Plugin Comments : Double définition de #forum
1er novembre 2013, par jeanmarie grallil semble qu’avec la dist (3.0.11) et le plugin Comments (3.2.7), il y ait une double définition de l’ID forum dans les articles :
une 1ère fois dans la dist > article.html (L55) puis dans le plugin > comments\inclure\forum.html (L3)
La ligne en question :
Du coup, ça provoque une erreur de validation HTML...Proposition de b_b : "Je pense qu’il serait "logique" de déplacer l’ancre en question dans inclure/forum de la dist pour fixer le bp. "
-
video streaming using recent frames only
30 juillet 2019, par Max PaythonI am trying to create a live video chat application, I am dealing with latency problems but these problems are not produced by encoding or overhead, rather from the definition of streaming itself.
For example if I start the client program 15 seconds after the server program (start listening the port 15 seconds late), the client tries the play the 15 second old stream. (and fails because of the lack of I-frames introduced by x264 zero-latency, but this is not important)
But I am trying to make it live. Old frames should be discarded and and the most recent frame should be showing (to a 1 second buffer maybe). I failed at doing this so I wanted to wait streaming until the peer is connected, but my goal is actually the first one.
I am using ffmpeg for streaming. Can ffmpeg wait streaming until a single client starts listening (or connects) the port.
How does applications like Skype or Hangouts handle this ? In these applications, if a user suddenly stops listening to the port (internet error for example) for 5 seconds, the chat will continue regularly after the connections is restored, and that user will not see the 5 second old frame but the new one. However I was not able to achieve this.
-
How to insert commands for randomization and action after a given time
26 avril 2021, par Señor EggRight now in my code, I have it written out to play audio files after a !join command. I would like to change it to a command like after every 40 minutes, and I would like to be able to choose a random file to play out of a list. Help on how to ajust my code would be great !


My code :


from discord.ext import commands
from discord import FFmpegPCMAudio
 
client = commands.Bot(command_prefix = '!')
@client.command(pass_context=True)
async def join(ctx):
 if (ctx.author.voice):
 channel = ctx.message.author.voice.channel
 voice = await channel.connect()
 source = FFmpegPCMAudio('AUDIO FILE')
 player = voice.play(source)
 else:
 await ctx.send("User not in a voice channel, unable to connect.")
 
@client.command(pass_context=True)
async def leave(ctx):
 if (ctx.voice_client):
 await ctx.guild.voice_client.disconnect()
 await ctx.send("I have left the voice channel.")
 else:
 await ctx.send("I am not in a voice channel.")
 
 
 
client.run('BOT TOKEN')```