Recherche avancée

Médias (91)

Autres articles (51)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (4433)

  • lavfi/vulkan : fix static descriptor set updating

    16 novembre 2021, par Lynne
    lavfi/vulkan : fix static descriptor set updating
    

    Update all descriptor sets for all queues if a descriptor set hasn't
    been initialized yet.

    • [DH] libavfilter/vulkan.c
    • [DH] libavfilter/vulkan.h
  • ffmpeg stream rc buffer underflow

    5 août 2015, par finder2

    At the moment I’m setting up a screen-sharing platform with the opensource tool ffmpeg / ffserver. At the beginning of the sharing everything is fine. After around 1 1/2 minutes I get the following exception in the output.

    [flv @ 0x3a47aa0] rc buffer underflow
    [flv @ 0x3a47aa0] max bitrate possibly too small or try trellis with large lmax or increase qmax

    I’ve tried to set an verry high lmax & qmax but this hasn’t changed any thing.Additionally I’ve tried to increase the bitrate , the buffersize and the bitrate.

    I use the following command with ffmpeg :

    ffmpeg -f x11grab -s 1920x1080 -r 20 -i :0.0+1680,0 "http://localserver.de:8080/input1.ffm"

    The config file for the ffserver is :

    HTTPPort 8080
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 50000
    CustomLog -

    <feed>
     File /var/ffserver/input1.ffm
     FileMaxSize 20M
     ACL allow *FROM IP*  *TO IP*
    </feed>

    <stream>
     Feed input1.ffm
     Format swf
     VideoCodec flv
     VideoFrameRate 20
     VideoBufferSize 8000
     VideoBitRate 250
     VideoQMin 1
     VideoQMax 5
     VideoSize 640x400
     PreRoll 0
     StartSendOnKey
     NoAudio
    </stream>

    An other streaming format would also be a possibility but I didn’t know which are possible for live-streaming.

    Thanks in advanced

    efinder2

  • FFMPEG unable to find a suitable option format for 'reconnect' error

    14 août 2021, par Fayeze Salih
    import discord&#xA;from discord.ext import commands&#xA;from discord.ext.commands.core import command&#xA;import youtube_dl&#xA;&#xA;class Music(commands.Cog):&#xA;    def __init__(self, client):&#xA;        self.client = client&#xA;    &#xA;    @commands.command()&#xA;    async def play(self, ctx, url):&#xA;        ctx.voice_client.stop()&#xA;        FFMPEG_OPTIONS = {&#x27;before_options&#x27;: &#x27;reconnect 1 -reconnect_streamed 1 -reconnect_delay_max 5&#x27;, &#x27;options&#x27;: &#x27;-vn&#x27;}&#xA;        YDL_OPTIONS = {&#x27;format&#x27;: &#x27;bestaudio&#x27;}&#xA;        vc = ctx.voice_client&#xA;&#xA;        with youtube_dl.YoutubeDL(YDL_OPTIONS) as ydl:&#xA;            info = ydl.extract_info(url, download=False)&#xA;            url2 = info[&#x27;formats&#x27;][0][&#x27;url&#x27;]&#xA;            source = await discord.FFmpegOpusAudio.from_probe(url2, **FFMPEG_OPTIONS)&#xA;            vc.play(source)&#xA;&#xA;def setup(client):&#xA;    client.add_cog(music(client))&#xA;

    &#xA;

    This code for my music bot returns the error,

    &#xA;

    &#xA;

    [NULL @ 0000018dc5d76e40] Unable to find a suitable output format for 'reconnect'&#xA;reconnect : Invalid argument.

    &#xA;

    &#xA;

    Why ? I have tried making sure that I am using hyphens but that hasn't fixed the issue.

    &#xA;