Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (58)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8748)

  • dshow command is listing device name different from actual device name

    17 octobre 2017, par Somanshu

    I have used the command :

    ffmpeg -f dshow -list_devices true -i dummy

    to list the devices, but if device name is in language other than English then
    device name shown by FFmpeg and actual differ. How can I solve this mismatch
    problem ? This image shows the device name in Spanish :

    in Spanish

    This image shows the device name as read by FFmpeg :

    as read by FFmpeg

  • dshow command is listing device name different from actual device name

    20 octobre 2015, par Somanshu

    I have used the command :

    ffmpeg -f dshow -list_devices true -i dummy

    to list the devices, but if device name is in language other than English then
    device name shown by FFmpeg and actual differ. How can I solve this mismatch
    problem ? This image shows the device name in Spanish :

    in Spanish

    This image shows the device name as read by FFmpeg :

    as read by FFmpeg

  • Program not working as expected on DigitalOcean Ubuntu

    22 mai 2022, par Stardust

    Currently, I am writing a discord bot on python and tried to put it on my droplet of Digital Ocean to make it run 24/7 ; however, my play method and radio method will not produce sound in the environment. When I tested on my local python interpreter everything works fine but the statement seems to have no effect when it was run on the server.

    


        @commands.command(name="radio")
    async def radio(self, ctx, url: str = 'https://listen.moe/fallback'):
    print("radio received!")
    channel = ctx.message.author.voice.channel
    self.is_radio = True
    try:
        self.vc = await channel.connect()

    except Exception:
        pass
    if self.vc is None:
        await ctx.send("Sorry but I cannot find where are you...")
    else:
        await ctx.send("Take a look at this! Hope you will like it~")
        self.vc.play(FFmpegPCMAudio('https://listen.moe/fallback'))


    


    I uses the ubuntu provided by the Digital Ocean droplet, and uses git clone to copy the file into the server, then uses python3 main.py to run the code.