Recherche avancée

Médias (91)

Autres articles (97)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

Sur d’autres sites (4761)

  • avformat/http: Stop cookie_dict leaking on errors.

    1er juin 2021, par Robert Bengtsson-Ölund
    avformat/http: Stop cookie_dict leaking on errors.
    

    This solves the memory leak reported in https://trac.ffmpeg.org/ticket/9273

    Signed-off-by : Robert Bengtsson-Ölund <robert.bengtsson-olund@intinor.se>

    • [DH] libavformat/http.c
  • FFmpeg not working (discord.py)

    30 octobre 2017, par Francesco

    Code :

    channel = ctx.message.author.voice.voice_channel
    link = "https://youtube.com/watch?v=videoidhere"
    voice = await bot.join_voice_channel(channel)
    player = voice.create_ytdl_player(link)
    player.start()

    I’m getting this error :

    AttributeError: 'generator' object has no attribute 'start'

    Might FFmpeg be broken ? If yes, I can’t find a way to uninstall FFmpeg deleting the installation folder.

  • ffmpeg audio ducking with stereo and surround input

    6 février 2021, par cyptus

    I got two input audio files for ffmpeg :

    &#xA;

      &#xA;
    1. 5.1 channels with background music (background.mp3)
    2. &#xA;

    3. Stereo with voice (voice.mp3)
    4. &#xA;

    &#xA;

    I want to merge this files into one ouput file (5.1), while reducing the background music (file 1) when voice (file 2) is played (called audio ducking). sidechaincompress should be the correct filter for this.

    &#xA;

    ffmpeg -i background.mp3 -i voice.mp3 -filter_complex "\&#xA;[1:a]asplit=2[voice][voice2];\&#xA;[0:a][voice]sidechaincompress[mix];\&#xA;[voice2][mix]amerge" \&#xA;mixed.mp3&#xA;

    &#xA;

    Is kind of able to produce this output, but is down-mixing the background.mp3 to a stereo output (ffprobe results in channels=2 channel_layout=stereo for the generated mixed.mp3).

    &#xA;

    How can i merge the streams voice2 and mix while keeping all channels ?

    &#xA;