Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (95)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (5938)

  • x86 : XOP pixel_sad_{x3, x4} high bit-depth

    9 avril 2014, par James Almer
    x86 : XOP pixel_sad_x3, x4 high bit-depth
    
    • [DH] common/pixel.c
    • [DH] common/x86/pixel.h
    • [DH] common/x86/sad16-a.asm
  • x86 : XOP pixel_sad_{x3, x4} high bit-depth

    9 avril 2014, par James Almer
    x86 : XOP pixel_sad_x3, x4 high bit-depth
    
    • [DH] common/pixel.c
    • [DH] common/x86/pixel.h
    • [DH] common/x86/sad16-a.asm
  • High latency when reading latest frame from H264 stream with FFmpeg

    22 juin 2022, par massivemoisture

    I have an app in c# that receives a H264 video stream of Android device's screen from scrcpy-server (https://github.com/Genymobile/scrcpy).

    


    I want to continously get the latest image from the stream and send it to a web app for streaming.

    


    I created a Process for ffmpeg and gave it these arguments :

    


    -fflags -nobuffer -flags low_delay -probesize 32 -re -i pipe: -g 1 -f rawvideo -pix_fmt bgr24 -an -sn pipe:

    


    I have two threads. One thread to write to stdin of the FFmpeg process the bytes that I get from scrcpy-server. The other thread to read the stdout.

    


    But the image stream that I get has very high latency, especially if there is not much movement on the device's screen. And the latency just keeps mounting up, from a few seconds behind to a minute and more.

    


    How can I fix this issue ?