Recherche avancée

Médias (91)

Autres articles (53)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

  • avcodec/webvttdec : Deal with WebVTT escapes

    11 octobre 2015, par Ricardo Constantino
    avcodec/webvttdec : Deal with WebVTT escapes
    

    Bare ampersand characters are still accepted, even though out-of-spec.
    Also fixes adjacent tags not being parsed.

    Fixes trac #4915

    Signed-off-by : Ricardo Constantino <wiiaboo@gmail.com>

    • [DH] libavcodec/webvttdec.c
  • FFMPEG - What are some recommended parameters for x265 (libx265) ?

    7 janvier 2019, par dd_code

    I am working on re-encoding some footage (x264), including some grainy footage. I am interested in CRF-only bitrate management (I want to avoid artifacts during demanding scenes).
    What are recommended parameters to be set instead of leaving them at their defaults ?

    Here is what I got so far, pretty simple :

    ffmpeg -i in.mkv -vf unsharp=3:3:1 -c:v libx265 -tune:v grain -crf 24 -c:a copy out.mkv

    (this example has grain tune as many files are grainy, and without it it washes it out and all the "detail by noise" is lost + I am applying a light sharpening filter, I find there is always a room to sharpen a bit without causing noticeable sharpening artifacts)

    If I am not mistaken all the params one does consider are ones contained in the presets, but is there some other or one of those which is a good practice to adjust manually to achieve a better result ? I was wondering specifically about P,I,B-frames and AQ (but I guess there are some other as well).

  • avutil/channel_layout : add av_get_extended_channel_layout

    26 décembre 2016, par Marton Balint
    avutil/channel_layout : add av_get_extended_channel_layout
    

    Return a channel layout and the number of channels based on the specified name.

    This function is similar to av_get_channel_layout(), but can also parse unknown
    channel layout specifications.

    Unknown channel layout specifications are a decimal number and a capital ’C’
    suffix, in order to not break compatibility with the lowercase ’c’ suffix,
    which is used for a guessed channel layout with the specified number of
    channels.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/APIchanges
    • [DH] doc/utils.texi
    • [DH] libavutil/channel_layout.c
    • [DH] libavutil/channel_layout.h
    • [DH] libavutil/version.h