Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (72)

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

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

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

  • streaming a webcam feed over rtsp using ffmpeg & ffserver to an android client

    26 juillet 2015, par Coyote

    I am trying to stream my webcam over rtsp and open the stream using android.
    I managed to get the first part working (rtsp stream) using ffserver and ffmpgeg. Here is my ffserver.conf file :

    HTTPPort 8000
    RTSPPort 8001
    HTTPBindAddress 192.168.1.74
    RTSPBindAddress 192.168.1.74
    MaxClients 100
    MaxBandwidth 10000
    NoDefaults

    <feed>
      File /tmp/witty.ffm
      FileMaxSize 20M
    </feed>

    <stream>
      Feed witty.ffm
      Format rtp
      VideoSize 640x480
      VideoQMin 1
      VideoQMax 20
      VideoFrameRate 30
      VideoBitRate 500
      AVOptionVideo flags +global_header
      VideoCodec libx264
      AVPresetVideo baseline
      NoAudio
    </stream>

    ffserver :

    ffserver -f -d ffserver.conf // luch the server

    and then I use FFmpeg to open the webcam (Mac OS)

    ffmpeg -f avfoundation -i "default" http://192.168.1.74:8000/witty.ffm

    I can open the stream from VLC but on android using a videoView i am getting an error (1,-38) and an alert view saying "can’t play this video".

  • lavc/vvc : Increase VVC_MAX_* definitions for level 6.3

    25 février 2024, par Frank Plowman
    lavc/vvc : Increase VVC_MAX_* definitions for level 6.3
    

    Reported-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Frank Plowman <post@frankplowman.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/vvc.h
  • avutil/tx : print debug log at trace level

    22 février 2024, par James Almer
    avutil/tx : print debug log at trace level
    

    The output of TX is extremely verbose and makes it harder to find other debug
    log messages, so print most of it at trace level.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/tx.c