Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • FFMPEG : How to keep UDP stream connection open even source drop some minute

    2 mars 2016, par ALiS

    i decode UDP stream (that genrate from DVB signal) using ffmpeg to HLS with this code :

    ffmpeg -i udp://239.1.2.1:60001?fifo_size=50000000 -acodec copy -vcodec copy -hls_time 2 -hls_wrap 5 -f hls /var/www/html/ts/1.m3u8

    Sometime DVB signal drop for some second or minute and that lead to ffmpeg stop encoding and show error :

    udp://239.1.2.1:60001: Connection timed out

    When i play udp in VLC player and input stream drop for some second VLC wait stop play and when stream start again play again.

    Now i want to know is there exist a way that ffmpeg either found that stream stop and dont show timeout error...it mean that FFMPEG keep connection open and wait for receive stream every time start from source. Thanks

  • configure : Don’t use symlinks for creating the out of tree makefile

    14 novembre 2013, par Martin Storsjö
    configure : Don’t use symlinks for creating the out of tree makefile
    

    On some platforms (such as msys), symlinks are (poorly) emulated
    by simply creating a copy of the file.

    This means that when building out of tree, the build tree gets
    a copy of the original makefile, which can lead to unintuitive
    build errors when the original makefile gets updated later.

    Instead simply create a stub makefile which includes the real
    one.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • webp : ensure that each transform is only used once

    5 mars 2015, par Andreas Cadhalpun
    webp : ensure that each transform is only used once
    

    According to the WebP Lossless Bitstream Specification
    "each transform is allowed to be used only once".

    If a transform is more than once this can lead to memory
    corruption.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/webp.c