Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (56)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (7564)

  • regainplay_analysis : Work around GCC optimizer bug.

    15 juin 2014, par Erik de Castro Lopo
    regainplay_analysis : Work around GCC optimizer bug.
    

    Discussion : http://lists.xiph.org/pipermail/flac-dev/2014-June/004720.html
    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/share/replaygain_analysis/replaygain_analysis.c
  • React Native | FFMPEG on iOS | Adding PNG image overlay "watermark" on a video, JPEG is working, but PNG is not working

    17 mai 2023, par niembro64

    Struggled for five hours so wanted to show people using react-native ffmpeg libraries how to do this.

    &#xA;

    You need to disable PNG compression in your build settings on XCode.

    &#xA;

    Follow the description here, I was using a different library but this still worked for me.

    &#xA;

    disable both of these (set to no)

    &#xA;

    Struggled for five hours so wanted to show people using react-native ffmpeg libraries how to do this.

    &#xA;

    You need to disable PNG compression in your build settings on XCode.

    &#xA;

  • playing an mp3 into a voice channel with discord.py

    12 décembre 2020, par Tanuj KS

    I'm trying to make a text-to-speech bot for people to use in no-mic-chats to speak into voice channels. I found other articles explaining this but most of them show the windows ffmpeg version but I am on a Mac. this is my code so far :

    &#xA;

    @bot.command()&#xA;async def speak(ctx, message):&#xA;    tts = gtts.gTTS(message, lang="en")&#xA;    tts.save("text.mp3")&#xA;    if ctx.guild.voice_client:&#xA;        vc = ctx.guild.voice_client&#xA;    else:&#xA;        voice_channel = get(ctx.guild.voice_channels, name="Voice Lounge")&#xA;        vc = await voice_channel.connect()&#xA;    vc.play(source=&#x27;text.mp3&#x27;)&#xA;

    &#xA;

    This gives me the error :&#xA;discord.ext.commands.errors.CommandInvokeError: Command raised an exception: ClientException: ffmpeg was not found.

    &#xA;

    Some people said to specify the FFMPEG.exe file but I do not see that. I downloaded the FFMPEG git from git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg

    &#xA;

    but I still get the error. other articles said to specify the executable but I can't find any ffmpeg.exe which I have to specify the path for.

    &#xA;

    Thanks in advance

    &#xA;