
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (101)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (13133)
-
Cannot play H264/AAC, mpeg-ts, HTTP stream in browser [on hold]
19 mars 2019, par Ishaan ShringiI have a H264/AAC based MPEG-2 transport stream from a server.
The browser is unable to play the stream natively, probably because of the transport stream container format.
I could not find a javascript player that could support this stream.
Is this possible using any js library, plugin or an extension implementation ?
-
Creating a Discord Bot to play .mp3 files
31 décembre 2020, par TheGr3atJoshMy goal at the moment is to create a Discord Bot that can play .mp3 files for my private Discord Server. This is my code. The file test.mp3 is in the same folder as the .py file. The error message is : "NameError : name 'FFmpegPCMAudio' is not defined". I added the ffmpeg executable in my path environment variable. Can anyone help ?


import discord
import asyncio
import time

client = discord.Client()

@client.event
async def on_message(message):
 if "test" in message.content:
 user = message.author
 voice_channel = user.voice.channel
 channel = None
 if voice_channel != None:
 channel = voice_channel.name
 vc = await voice_channel.connect()
 player = vc.play(FFmpegPCMAudio("test.mp3"), after=lambda: print('done'))
 player.start()
 while not player.is_done():
 await asyncio.sleep(1)
 player.stop()
 await vc.disconnect()

client.run(TOKEN)



-
avcodec/snowenc : Don't pass int[2] as parameter declared as int[3]
10 juillet 2022, par Andreas Rheinhardtavcodec/snowenc : Don't pass int[2] as parameter declared as int[3]
check_block_inter() currently does this when calling check_block().
This leads to a -Wstringop-overflow= warning when compiling with
GCC 12.1.Given that the main part of the body of check_block() consists
of an "if (intra) ... else ... " which is true iff
check_block() is not called from check_block_inter(),
it makes sense to fix this by just inlining check_block()
check_block_inter() and turning check_block() into a new
check_block_intra() (with the inter parts removed, of course).This should also not make much of a difference for the generated code
given that both check_block() as well as check_block_inter()
are already marked as av_always_inline, so this commit follows
this route to fix the issue.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>