Recherche avancée

Médias (91)

Autres articles (98)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8850)

  • hwcontext_vaapi : remove duplicate formats from sw_format list

    24 juillet 2020, par Haihao Xiang
    hwcontext_vaapi : remove duplicate formats from sw_format list
    

    hwcontext_vaapi maps different VA fourcc to the same pix_fmt for U/V
    plane swap cases, however duplicate formats are not expected in sw_format
    list when merging formats.

    For example :
    ffmpeg -loglevel debug -init_hw_device vaapi -filter_hw_device vaapi0 \
    - f lavfi -i smptebars -vf \
    "hwupload=derive_device=vaapi,scale_vaapi,hwdownload,format=yuv420p" \
    - vframes 1 -f null -

    Without this fix, an auto scaler is required for the above command
    Duplicate formats in ff_merge_formats detected
    [auto_scaler_0 @ 0x560df58f4550] Setting 'flags' to value 'bicubic'
    [auto_scaler_0 @ 0x560df58f4550] w:iw h:ih flags :'bicubic' interl:0
    [Parsed_hwupload_0 @ 0x560df58f0ec0] auto-inserting filter
    'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and
    the filter 'Parsed_hwupload_0'

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

    • [DH] libavutil/hwcontext_vaapi.c
  • lavc/cbs_av1 : restore CodedBitstreamAV1Context when AVERROR(ENOSPC)

    28 septembre 2022, par Haihao Xiang
    lavc/cbs_av1 : restore CodedBitstreamAV1Context when AVERROR(ENOSPC)
    

    The current pbc might be small for an obu frame, so a new pbc is
    required then parse this obu frame again. Because
    CodedBitstreamAV1Context has already been updated for this obu frame, we
    need to restore CodedBitstreamAV1Context, otherwise
    CodedBitstreamAV1Context doesn't match this obu frame when parsing obu
    frame again, e.g. CodedBitstreamAV1Context.order_hint.

    $ ffmpeg -i input.ivf -c:v copy -f null -
    [...]
    [av1_frame_merge @ 0x558bc3d6f880] ref_order_hint[i] does not match
    inferred value : 20, but should be 22.
    [av1_frame_merge @ 0x558bc3d6f880] Failed to write unit 1 (type 6).
    [av1_frame_merge @ 0x558bc3d6f880] Failed to write packet.
    [obu @ 0x558bc3d6e040] av1_frame_merge filter failed to send output
    packet

    Reviewed-by : James Almer <jamrial@gmail.com>
    Reviewed-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/cbs_av1.c
  • lavc/qsvenc : enlarge the maximum number of ExtParam buffers on mfxEncodeCtrl

    18 octobre 2022, par Haihao Xiang
    lavc/qsvenc : enlarge the maximum number of ExtParam buffers on mfxEncodeCtrl
    

    The next commit and other commits in future will use more ExtParam
    buffers.

    And combine 2 free functions into single one

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

    • [DH] libavcodec/qsv_internal.h
    • [DH] libavcodec/qsvenc.c