Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (83)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (9053)

  • avformat/tls_schannel : immediately return decrypted data if available

    12 mai 2020, par Jan Ekström
    avformat/tls_schannel : immediately return decrypted data if available
    

    Until now, we would have only attempted to utilize already decrypted
    data if it was enough to fill the size of buffer requested, that could
    very well be up to 32 kilobytes.

    With keep-alive connections this would just lead to recv blocking
    until rw_timeout had been reached, as the connection would not be
    officially closed after each transfer. This would also lead to a
    loop, as such timed out I/O request would just be attempted again.

    By just returning the available decrypted data, keep-alive based
    connectivity such as HLS playback is fixed with schannel.

    • [DH] libavformat/tls_schannel.c
  • How to use FFmpeg Colorspace Options

    13 octobre 2024, par Matt McManis

    I'm trying to understand the difference between Colorspace FFmpeg arguments :

    


      

    • Normal option, -colorspace bt709
    • 


    • Number, -colorspace 1
    • 


    • Codec Params -x264-params "colorspace=bt709"
    • 


    • Filter -vf "colorspace=bt709"
    • 


    


    The Colorspace categories are :

    


      

    • all
    • 


    • iall
    • 


    • colorspace
    • 


    • transfer
    • 


    • primaries
    • 


    • color range
    • 


    • color matrix
    • 


    



    


    Question

    


    When should each be used when encoding from raw, or transcoding/converting from one format to another ? Such as mpg to mp4.

    


    Do I need to specify the input colorspace or will FFmpeg auto-detect ?

    



    


    Problems

    


    There is no -vp8-params, only -x264-params. Should I use normal options or -vf instead for vp8 and other codecs ?

    



    


    Errors

    


      

    • There are no Normal -all or -colormatrix options, but there are all= and colormatrix= for -x264-params and -vf.

      


    • 


    • With Codec Params -x264-params "colorspace=bt709", I get Error parsing option 'colorspace = bt709'.
      
However colorprim=bt709, transfer=bt709, colormatrix=bt709 all work.

      


    • 


    



    


    Resources

    


    https://ffmpeg.org/ffmpeg-filters.html#colormatrix
    
https://ffmpeg.org/ffmpeg-filters.html#colorspace
    
https://trac.ffmpeg.org/wiki/colorspace

    


  • hwcontext_vulkan : actually use the frames exec context for prep/import/export

    15 mai 2020, par Lynne
    hwcontext_vulkan : actually use the frames exec context for prep/import/export
    

    This was never actually used, likely due to confusion, as the device context
    also had one used for uploads and downloads.
    Also, since we're only using it for very quick image barriers (which are
    practically free on all hardware), use the compute queue instead of the
    transfer queue.

    • [DH] libavutil/hwcontext_vulkan.c