Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (110)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (9005)

  • Revision 86955 : Le plug est dit pour spip 3.0 et 3.1, donc la version mini de saisies ...

    11 juin 2018, par spip.franck@… — Log

    Le plug est dit pour spip 3.0 et 3.1, donc la version mini de saisies doit être une version qui supporte 3.1 et moins.
    Ajout également d’une borne mini absente à l’utilise de crayons (1.13.0) première version pour spip 3.0.0

  • FFmpeg With PHP Fails To Execute

    16 janvier 2020, par Loadedbaze Media

    please i really help with this, ffmeg fails to execute in php

    $sname = $default_mp3_directory . $timeFolder . $storeName;

    $voiceSource = getcwd() . '/voice.mp3';



    $cmd = 'ffmpeg -i ' . $mp3_filz . ' -i ' . $voiceSource . ' -filter_complex "[0]volume=1[main];[1]adelay=20000,volume=5[voice];[main][voice]amix=duration=longest:dropout_transition=0"';
    exec($cmd, $output);
  • How to insert commands for randomization and action after a given time

    26 avril 2021, par Señor Egg

    Right now in my code, I have it written out to play audio files after a !join command. I would like to change it to a command like after every 40 minutes, and I would like to be able to choose a random file to play out of a list. Help on how to ajust my code would be great !

    


    My code :

    


    from discord.ext import commands
from discord import FFmpegPCMAudio
 
client = commands.Bot(command_prefix = '!')
@client.command(pass_context=True)
async def join(ctx):
    if (ctx.author.voice):
        channel = ctx.message.author.voice.channel
        voice = await channel.connect()
        source = FFmpegPCMAudio('AUDIO FILE')
        player = voice.play(source)
    else:
        await ctx.send("User not in a voice channel, unable to connect.")
 
@client.command(pass_context=True)
async def leave(ctx):
    if (ctx.voice_client):
        await ctx.guild.voice_client.disconnect()
        await ctx.send("I have left the voice channel.")
    else:
         await ctx.send("I am not in a voice channel.")
 
 
 
client.run('BOT TOKEN')```