Recherche avancée

Médias (1)

Mot : - Tags -/university

Autres articles (32)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

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