Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (80)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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, par

    Accé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, par

    Dixit 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 (10017)

  • How to fix ClientException : ffmpeg was not found

    26 juin 2022, par ESIM dude

    So 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 Z

    I 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 Eidarous

    I'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.