
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (112)
-
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 ;
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (11485)
-
How to fix ClientException : ffmpeg was not found
26 juin 2022, par ESIM dudeSo I have this play command here :


@commands.command(name='play')
 async def play(self, ctx: commands.Context, *, search: str):

 if not ctx.voice_state.voice:
 await ctx.invoke(self.join)

 async with ctx.typing():
 try:
 source = await YTDLSource.create_source(ctx, search, loop=self.bot.loop)
 except YTDLError as e:
 await ctx.reply('An error occurred while processing this request: {}'.format(str(e)))
 else:
 song = Song(source)

 await ctx.voice_state.songs.put(song)
 await ctx.reply('Enqueued {}'.format(str(source)))



And when I do
!play disaster kslv
, it says this error in the output :
An error occurred: Command raised an exception: ClientException: ffmpeg was not found.

Even though I have the C :\ffmpeg\bin in the path environmental variables, It still shows this error. Can someone help ?

-
Python / Discord FFMPEG playing not a audio
19 août 2022, par F L R U ZI wanted to play an mp3 file in a voice channel, however, it gives me an error... I have already installed FFMPEG correctly on my computer.


My Code :


@bot.command()
async def joinandplay(ctx):
 song = os.path.isfile("musik.mp3")
 voice_channel = bot.get_channel(940326390857883648)
 vc = await voice_channel.connect()
 voice = discord.FFmpegPCMAudio(song)
 vc.play(voice)



The error :


AttributeError: 'FFmpegPCMAudio' object has no attribute '_process'



-
FFMPEG : How to merge two sounds with good quality ?
26 avril 2021, par Mahmoud EidarousI'm trying to merge a recorded sound with an audio file and make it sound like an original song.


I'm using this command


ffmpeg -i audiofile.mp3 -i recorded_file.wav -filter_complex "[0:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=0.5[a1]; [1:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=7[a2]; [a1][a2]amerge=inputs=2,pan=stereo|c0code>


This command does achieve the merge, but the quality of the output song is very bad.


I tried to manipulate the
volume
values but still the quality is bad.

I believe a filter is required on the recorded sound or something...


Any help to make the output sound like an original song would be really appreciated.