
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 (74)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (6375)
-
Still getting FFMPEG "Segmentation fault" with network stream source with the AmazonLinux 2023 distro [closed]
28 décembre 2023, par Matthew DrookerAfter referencing https://docs.yucca.app/en/troubleshooting/Segmentation_fault_core_dumped


And using


FFMPEG "Segmentation fault" with network stream source


I thought I had this solved.
But still having the same issue as documented as fixed.


Im using AmazonLinux 2023 distro in a Lambda custom image.


Im trying to use baseImage from
FROM --platform=linux/amd64 public.ecr.aws/lambda/nodejs:20


Then doing-
RUN dnf install nscd -y
in my Dockerfile allowing the nscd service to be installed per the answer.

But, Im still getting the
ffprobe was killed with signal SIGSEGV
error with the new AmazonLinux Distro.

Has anyone else faced this with the 2023 Distro ? Or have an answer to this question ?


-
Matomo maker InnoCraft named 2023 Hi-Tech Awards finalist
20 avril 2023, par Erin — Press Releases -
discord music bot downloads all videos on a webpage instead of just one
11 janvier 2021, par IdotEXEWhen I try and run this code with any given youtube URL, it will usually say : "Downloading video 1 of 25", and then obviously times out. Downloading the videos as an mp3 file does work, but obviously, I don't need 25 mp3 files whenever I'm only trying to play one video as audio. Anyone got any ideas as to why this happens ?


@bot.command()
async def play(ctx, url : str):
 song_there = os.path.isfile("song.mp3")
 try:
 if not os.path.exists("song.mp3"):
 os.remove("song.mp3")
 except PermissionError:
 await ctx.send("Wait for the current music to end / use stop command")
 return

 voiceChannel = ctx.message.author.voice.channel

 await voiceChannel.connect()
 voice = discord.utils.get(bot.voice_clients, guild=ctx.guild)


 ydl_opts = {
 'format' : 'bestaudio/best',
 'postprocessors': [{
 'key' : 'FFmpegExtractAudio',
 'preferredcodec' : 'mp3',
 'preferredquality' : '192',
 }]
 }

 with youtube_dl.YoutubeDL(ydl_opts) as ydl:
 ydl.download([url])
 for file in os.listdir('./'):
 if file.endswith(".mp3"):
 os.rename(file, "song.mp3")
 voice.play(discord.FFmpegAudio("song.mp3"))

@bot.command()
async def leave(ctx):
 voice = discord.utils.get(bot.voice_clients, guild= ctx.guild)
 if voice.is_connected():
 await voice.disconnect()
 else:
 await ctx.send("The bot is not connected to a voice channel")

@bot.command()
async def pause(ctx):
 voice = discord.utils.get(bot.voice_clients, guild= ctx.guild)
 if voice.is_playing():
 voice.pause()
 else:
 await ctx.send("Currently no audio is playing")

@bot.command()
async def resume(ctx):
 voice = discord.utils.get(bot.voice_clients, guild= ctx.guild)
 if voice.is_paused():
 voice.resume()
 else:
 await ctx.send("The audio is not currently paused")

@bot.command()
async def stop(ctx):
 voice = discord.utils.get(bot.voice_clients, guild=ctx.guild)
 voice.stop()