Recherche avancée

Médias (91)

Autres articles (111)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3820)

  • How do I create RTMP stream from a picture ? [on hold]

    6 février 2017, par Muhammad Umer

    Now first the goal :

    I want to create a live video stream where people can vote and such, and it shows total votes in the live video.

    However, I have zero experience with streaming.

    After some thought My solution is this :

    Create a picture every 5 seconds and replace the old picture, new picture contain total number of votes.

    From old picture somehow create a continous live stream.

    I think it could be very easy or very hard.

    I am using nodejs, open to better performance oriented language suggestions.

  • Revision 0211cd899a : rtcd/win32 : prefer win32 primatives to pthreads Fixes some build issues for peo

    24 septembre 2012, par John Koleszar

    Changed Paths : Modify /vp8/common/rtcd.c rtcd/win32 : prefer win32 primatives to pthreads Fixes some build issues for people building for win32 who have a pthreads emulation layer installed. Change-Id : I0e0003fa01f65020f6ced35d961dcb1130db37a8

  • potato quality audio coming from bot

    24 juillet 2020, par jas_123

    When I play audio through my bot it sounds really bad, I have a fast internet connection, so what could be causing this ? Im running my bot on a Raspberry Pi 3. Im using FFMpeg. Could the RPI be bottlenecking it somehow. Is it my code ?

    


    simplified version of my code :

    


    @client.command()
async def play(ctx):
    channel = client.get_channel(ctx.message.author.voice.channel.id)
    voice = await channel.connect()
    if not voice.is_playing():
        voice.play(await discord.FFMpegOpusAudio(source='/path/to/file'))
        while voice.is_playing():
            await asyncio.sleep(1)
    discord.AudioSource.cleanup(str(ctx.message.author.voice.channel.id))