
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (14)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (2289)
-
Anomalie #2351 (Fermé) : Icone présente mais création de mots clés impossible en spip3 si pas de g...
25 octobre 2011, par cedric - -
Révision 24233 : Ticket #2667 : Lorsqu’une image est déjà présente (dans IMG/) avec une extension ...
21 février 2019, par marcimat@rezo.netOn évite ce petit souci en vérifiant le contenu de l’image (via le mime type retourné par getimagesize).
-
ffmpeg failing when using discord.py
4 avril 2021, par E. Z. L.I was making a bot with a rickrolling feature. It involves ffmpeg, but it always gives the following error :


FFmpeg version SVN-r18639, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-memalign-hack --enable-postproc --enable-gpl --enable-libfaac --enable-libfaad --enable-libgsm --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libx264 --enable-libxvid --disable-ffserver --enable-avisynth --enable-pthreads
 libavutil 50. 3. 0 / 50. 3. 0
 libavcodec 52.27. 0 / 52.27. 0
 libavformat 52.32. 0 / 52.32. 0
 libavdevice 52. 2. 0 / 52. 2. 0
 libswscale 0. 7. 1 / 0. 7. 1
 libpostproc 51. 2. 0 / 51. 2. 0
 built on Apr 21 2009 13:44:38, gcc: 4.2.4 (TDM-1 for MinGW)
Input #0, mp3, from 'rick.mp3':
 Duration: 00:03:33.10, start: 0.000000, bitrate: 192 kb/s
 Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 192 kb/s
Expected number for loglevel but found: warning



It keeps giving this error even when I switched to a different file, am I doing anything wrong ? I'm on Windows python 3.8.2, discord.py 1.6.0. Here is the code section :


@bot.command(name="rickroll")
async def rick(ctx, channel: discord.VoiceChannel):
 connection = await channel.connect()
 connection.play(discord.FFmpegPCMAudio("rick.mp3", executable="ffmpeg.exe"))