Recherche avancée

Médias (91)

Autres articles (59)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 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 (...)

Sur d’autres sites (5885)

  • FFmpeg - Live encryption/decrypt to youtube

    6 juin 2017, par Lucasp

    I would like to stream on youtube totally private.

    it’s possible to stream with encryption like this ?

    Example Encryption

    Thanks you ! :)

  • Discord.py - Streaming Youtube Live into Voice

    4 juin 2021, par SUPER MECH M500

    I'm back on the stacks, was banned from asking questions because they were terrible apparently, but I need help on something I've done a lot of research on but cannot find my answer ;

    


    I need to be able to stream a youtube live stream's audio into a VC for radio music using discord.py Rewrite. I've been looking at Youtube_DL- and/or FFMpeg-related internet posts and all were either outdated (discord.py==0.16.x) or involved downloading youtube videos (can't do that with ongoing streams).

    


    And I've also tried to look through the discord.py v0.16.12 voice_client.py create_ytdl_player. But to no avail, I could not find any solutions.

    


    This is my current situation in my code. It is a background task in one of my cogs.

    


        @loop(seconds=5)
    async def check_voice(self):
        try:
            channel = await self.bot.fetch_channel(819346920082112532)
        except NotFound:
            print("[IR] `韎
  • FFmpeg live stream to Youtube with Raspberry Pi & USB Camera — What command to use for better quality ?

    4 août 2023, par qwet142

    I am currently streaming to Youtube live with the following command :

    


    ffmpeg -re -f s16le -i /dev/zero -f v4l2 -thread_queue_size 512 -codec:v mjpeg -s 1920x1080 -i /dev/video0 -c:v libx264 -preset ultrafast -acodec aac -b:v 3500k -g 30 -f flv rtmp://a.rtmp.youtube.com/live2/key

    


    The frame rate is great, and the speed is 1x. However, the quality is very poor, improved only slightly after increasing the bitrate to 3000k. Changing the resolution doesn't help, and using veryfast makes things worse. How can I fix the quality ?

    


    Note : there is no audio and this is a USB camera.