Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (21)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (7695)

  • FFmpegInterop.UWP or VLC.MediaElement for UWP apps

    13 novembre 2018, par Weissu

    Which one is better choice for UWP ? VLC is really easy to start to use but FFmpeg more complicated (read : difficult). But if we are thinking for example licenses, support of different format, casting, media tags, converting , subtitles and audio support, video/audio editing etc.

    Any experiences ?

  • discord.py [mp3 @ 000001dc99bec540] Estimating duration from bitrate, this may be inaccurate

    21 mars 2021, par user13690031

    I have a problem with "[mp3 @ 000001dc99bec540] Estimating duration from bitrate, this may be inaccurate", using discord.py. Everything works (bot is speaking the text, which we tell him), but, at the end, always shows it. How can I solve it ?

    



            if _command == "speak":
            try:
                await message.delete()
                try:
                    error = _message[1]
                except IndexError:
                    message = await _channel.send("Where is my text, which I have to speak?!")
                    await asyncio.sleep(3)
                    await message.delete()
                    return
                channel = message.author.voice.channel
                voice = discord.utils.get(client.voice_clients, guild=_guild)
                if voice and voice.is_connected():
                    await voice.move_to(channel)
                else:
                    voice = await channel.connect()
                tts = gTTS(text=text, lang='en')
                tts.save("pcvoice.mp3")
                voice.play(discord.FFmpegPCMAudio(executable=r"C:\ffmpeg\bin\ffmpeg.exe", source="pcvoice.mp3"))
            except discord.errors.ClientException:
                await _channel.send("Come on! I am already playing something!")


    


  • JavaCV Getting current upload bitrate

    19 décembre 2014, par geNia

    I am streaming from android camera to server using FFmpegFrameRecorder and I need to get current upload bitrate.
    Is there an easy way to get it, or I should write my implementation ?