Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (62)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8343)

  • Discord.NET 1.0.2 sending voice to voice channel not working

    17 octobre 2018, par Sahar Ariel

    I did everything like the Discord.Net Documentation guide on voice -
    https://discord.foxbot.me/latest/guides/voice/sending-voice.html
    and it didn’t work the bot just joined the voice channel but it dont make any sound.
    and i have ffmpeg installed in PATH and ffmpeg.exe in my bot Directory along with opus.dll and libsodium.dll so i dont know what is the problem...

       public class gil : ModuleBase<socketcommandcontext>
    {
       [Command("join")]
       public async Task JoinChannel(IVoiceChannel channel = null)
       {
           // Get the audio channel
           channel = channel ?? (Context.Message.Author as IGuildUser)?.VoiceChannel;
           if (channel == null) { await Context.Message.Channel.SendMessageAsync("User must be in a voice channel, or a voice channel must be passed as an argument."); return; }

           // For the next step with transmitting audio, you would want to pass this Audio Client in to a service.
           var audioClient = await channel.ConnectAsync();

           await SendAsync(audioClient,"audio/hello.mp3");
       }

       private Process CreateStream(string path)
       {
           return Process.Start(new ProcessStartInfo
           {
               FileName = "ffmpeg.exe",
               Arguments = $"-hide_banner -loglevel panic -i \"{path}\" -ac 2 -f s16le -ar 48000 pipe:1",
               UseShellExecute = false,
               RedirectStandardOutput = true,
           });
       }

       private async Task SendAsync(IAudioClient client, string path)
       {
           // Create FFmpeg using the previous example
           using (var ffmpeg = CreateStream(path))
           using (var output = ffmpeg.StandardOutput.BaseStream)
           using (var discord = client.CreatePCMStream(AudioApplication.Mixed))
           {
               try { await output.CopyToAsync(discord); }
               finally { await discord.FlushAsync(); }
           }
       }
    }
    </socketcommandcontext>

    please help

  • FFMPEG convert webm to mp4 not working

    4 octobre 2014, par RussellHarrower

    I have upgrade to the latest ffmpeg which supports webm, but I cant seem to convert webm to mp4

    ffmpeg -i filea.webM -sameq filea.flv

    I am getting this error

    swScaler: Unknown format is not supported as input pixel format
    Cannot get resampling context

    Not sure what to do. Please help

  • FFMPEG convert webm to mp4 not working

    30 juillet 2019, par RussellHarrower

    I have upgrade to the latest ffmpeg which supports webm, but I can’t seem to convert webm to mp4

    ffmpeg -i filea.webM -sameq filea.flv

    I am getting this error

    swScaler: Unknown format is not supported as input pixel format
    Cannot get resampling context

    I am not sure what to do.