Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (78)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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 (...)

Sur d’autres sites (15154)

  • avcodecc/ccaption_dec : remove extra word from long codec description

    25 janvier 2017, par Paul B Mahol
    avcodecc/ccaption_dec : remove extra word from long codec description
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/ccaption_dec.c
  • webp : fix capitalization of the word Exif

    14 janvier 2014, par James Almer
    webp : fix capitalization of the word Exif
    

    Also remove "webp :" from log messages. Using the AVCodecContext is enough.

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] libavcodec/webp.c
  • VoiceClient.play() doesn't play any audio

    13 juin 2019, par sickoofer2

    I am trying to make a music bot in discord.py, but whenever I tried to play audio using VoiceClient.play(), it never played anything, just stayed in the voice channel.

    async def play(ctx):
       for VoiceClient in client.voice_clients:
           if VoiceClient.guild == ctx.guild:
               await VoiceClient.play(discord.FFmpegPCMAudio('song.mp3'))
               embed = discord.Embed(title=f'⬅  {ctx.author.mention},  I am now playing that song.', color=0x51BDEF)
               await ctx.send(embed=embed)

    There weren’t any error messages either, just doesn’t play anything