Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (43)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (4803)

  • vvcdec : add parameter parser for sps, pps, ph, sh

    28 décembre 2023, par Nuo Mi
    vvcdec : add parameter parser for sps, pps, ph, sh
    

    Co-authored-by : Xu Mu <toxumu@outlook.com>
    Co-authored-by : Frank Plowman <post@frankplowman.com>
    Co-authored-by : Shaun Loo <shaunloo10@gmail.com>
    Co-authored-by : Wu Jianhua <toqsxw@outlook.com>

    • [DH] libavcodec/vvc/Makefile
    • [DH] libavcodec/vvc/vvc_ps.c
    • [DH] libavcodec/vvc/vvc_ps.h
    • [DH] libavcodec/vvc/vvcdec.h
  • vvcdec : add vvc_data

    28 décembre 2023, par Nuo Mi
    vvcdec : add vvc_data
    

    Co-authored-by : Xu Mu <toxumu@outlook.com>
    Co-authored-by : Frank Plowman <post@frankplowman.com>
    Co-authored-by : Shaun Loo <shaunloo10@gmail.com>
    Co-authored-by : Wu Jianhua <toqsxw@outlook.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/vvc/Makefile
    • [DH] libavcodec/vvc/vvc_data.c
    • [DH] libavcodec/vvc/vvc_data.h
  • C# - Discord.Net - Trying to read audio from soundcloud and transmit it to discord

    28 mars 2022, par Bruno Braga

    I am currently working on a discord bot that is able to play a song using soundcloud.&#xA;Unfortunately, I can't seem to figure out how to get it to read from the url and stream it !&#xA;The bot it made in C#, and uses Discord.net library and ffmpeg for the audio.&#xA;Would love to hear some suggestions !

    &#xA;

    These are the three functions involved :

    &#xA;

    [Command("teste", RunMode = RunMode.Async)]&#xA;public async Task Play(IVoiceChannel channel = null)&#xA;{&#xA;    var audioClient = await JoinChannel(channel);&#xA;    var url = "https://soundcloud.com/campatechlive/campatech-live-feat- &#xA;        matheus-moussa-arabian-system-vol-2-psy-trance-150-original-mix";&#xA;&#xA;    var ffmpeg = new Ffmpeg(audioClient);&#xA;    await ffmpeg.SendAsync(url);&#xA;}&#xA;&#xA;public async Task SendAsync(string path)&#xA;{&#xA;    using (var ffmpeg = CreateStream(path))&#xA;    using (var output = ffmpeg.StandardOutput.BaseStream)&#xA;    using (var discord = _client.CreatePCMStream(AudioApplication.Mixed))&#xA;    {&#xA;        try { await output.CopyToAsync(discord); }&#xA;        finally { await discord.FlushAsync(); }&#xA;    }&#xA;}&#xA;&#xA;private Process? CreateStream(string path)&#xA;{&#xA;    return Process.Start(new ProcessStartInfo&#xA;    {&#xA;        FileName = "ffmpeg",&#xA;        Arguments = $"-hide_banner -loglevel panic -i \"{path}\" -ac 2 -f &#xA;        s16le -ar 48000 pipe:1",&#xA;        UseShellExecute = false,&#xA;        RedirectStandardOutput = true,&#xA;    });&#xA;}&#xA;

    &#xA;

    I'm guessing it's something on the ffmpeg arguments, but can't kind of figure out what.

    &#xA;

    I've tried a bunch of different arguments on ffmpeg, but none of them worked.&#xA;Anyone can lend me a hand ?

    &#xA;