Advanced search

Medias (91)

Other articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • Script d’installation automatique de MediaSPIP

    25 April 2011, by

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 March 2010, by

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

On other websites (9327)

  • How can I construct an mp4 with 6 equal audio channels (not 5p1) from an mp4 and a 6 channel wav

    6 August 2021, by ncvp

    OS is Ubuntu Linux.
I start with xxx.webm with picture and synced mono sound.
I construct the 6 channel xxx.wav which has the sound from xxx.webm moved to the 6 channels as appropriate.

    


    % ffmpeg -i xxx.webm -i xxx.wav -map 0:v -map 1:a yyy.mp4

    


    makes the synced yyy.mp4 with 6 audio channels, but the soundtrack is 5p1. Channel 4 is low-pass filtered. This is not what I want.

    


    % ffmpeg -i xxx.webm -i xxx.wav -map 0:v -map 1:a -channel_layout 6.0 yyy.mp4

    


    is an improvement. Channel 4 is not low-pass filtered and it plays perfectly in ffplay and mplayer, but not VLC player.

    


    It turns out there is no channel-layout in yyy.mp4, so there must be something wrong with my -channel_layout 6.0.

    


    Any suggestions, please?

    


  • Discord Bot Not Playing Audio When Using YouTube-dl and FFmpeg

    5 November 2020, by John Henry 5

    I'm trying to get a bot to join a voice chat and then play the audio in a youtube url. This is the code I have:

    


    @client.command() async def play(ctx):
    channel = ctx.message.author.voice.channel
    voice_client = await channel.connect()

    opts = {'format': 'bestaudio'}
    FFMPEG_OPTIONS = {'before_options': '-reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5', 'options': '-vn'}
    with youtube_dl.YoutubeDL(opts) as ydl:
        song_info = ydl.extract_info('video', download=False)
        URL = song_info['formats'][0]['url']
    voice_client.play(FFmpegPCMAudio(URL, **FFMPEG_OPTIONS))


    


    No errors are thrown but it just says [youtube] video: Downloading webpage

    


  • avcodec/atrac3plus: reorder channels to match the output layout

    31 October 2022, by James Almer
    avcodec/atrac3plus: reorder channels to match the output layout
    

    The order in which the channels are coded in the bitstream do not always follow
    the native, bitmask-based order of channels both signaled by the WAV container
    and forced by this same decoder. This is the case with layouts containing an
    LFE channel, as it's always coded last.

    Fixes ticket #9964.

    Signed-off-by: James Almer <jamrial@gmail.com>

    • [DH] libavcodec/atrac3plusdec.c