Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (32)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (3129)

  • 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