Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (8660)

  • lavc/vaapi_decode : Use dynamic frame pool if possible

    26 mars 2024, par Haihao Xiang
    lavc/vaapi_decode : Use dynamic frame pool if possible
    

    libva2 doesn't require a fixed surface-array any more, so we may use
    dynamic frame pool for decoding when libva2 is available, which allows a
    downstream element stores more frames from VAAPI decoders and fixes the
    error below :

    $ ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi \
    - i input.mp4 -c:v hevc_vaapi -f null -
    ...
    [h264 @ 0x557a075a1400] get_buffer() failed
    [h264 @ 0x557a075a1400] thread_get_buffer() failed
    [h264 @ 0x557a075a1400] decode_slice_header error
    [h264 @ 0x557a075a1400] no frame !

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/vaapi_decode.c
  • avformat/matroskaenc : Write data directly into dynamic buffers

    26 novembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Write data directly into dynamic buffers
    

    This avoids copying the data in small chunks (1024B) into
    the dynamic buffer's small buffer before finally writing them
    into the "big" buffer.

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

    • [DH] libavformat/matroskaenc.c
  • How to make dynamic timestamp in ffpmeg, not static ?

    28 février 2013, par Sergii Rechmp

    I am using ffmpeg (windows pc) with my webcam to record what happens when i'm out of home.
    It works fine, but i can't make dynamic clock and date on screen.
    I have tried

    -vf "[in]drawtext=fontsize=12:fontfile=arial.ttf:text=&#39;%date%&#39;:x=10:y=25,  
    drawtext=fontsize=12:fontfile=arial.ttf:text="%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2%"

    It works, but it shows time only for start moment, than it wont change during video recording.
    it looks like :enter image description here
    Is there any method to out time on screen ?
    Thanks.