Recherche avancée

Médias (1)

Mot : - Tags -/university

Autres articles (32)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (3130)

  • ffmpeg reduce memory consumption

    18 juillet 2019, par Ehsan Vahab

    I’m developing an application, capturing some ip camera with RTSP protocols and send them to one server.
    everything is going well when the resolution of ip cameras is low but when they’re increased the memory consumption of my program goes up suddenly.

    I’ve realized that ffmpeg stores a sequence of frames which we can seek to.
    1.is there any way to reduce the len of that ?

    2.is it possible to reduce the frame size when the ffmpeg reads the frames from the input(=>ip camera) ? the size 400x400 is enough for my app but currently it’s 2048

    3.or any other way to help me reduce memory usage

  • fftools/sync_queue : make sure non-limiting streams are not used as queue head

    23 mai 2023, par Anton Khirnov
    fftools/sync_queue : make sure non-limiting streams are not used as queue head
    

    A non-limiting stream could mistakenly end up being the queue head,
    which would then produce incorrect synchronization, seen e.g. in
    fate-matroska-flac-extradata-update for certain number of frame threads
    (e.g. 5).

    Found-By : James Almer

    • [DH] fftools/sync_queue.c
  • avcodec/mpegvideo_enc : Fix unnecessary linear growth of buffer

    11 avril 2022, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Fix unnecessary linear growth of buffer
    

    If one encodes MJPEG with a single slice and uses input with
    AV_FRAME_DATA_ICC_PROFILE side data, the current allocation code
    in ff_mpv_encode_picture() will always increase the size of the
    temporary buffer used for allocating packets by the size needed
    for to write the ICC chunk even when the current buffer is actually
    large enough. This commit fixes this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpegvideo_enc.c