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 (5888)

  • FFmpeg text is not rendering for indian local language font

    7 mars 2023, par Konduri Sai Aditya

    FFmpeg unable to render the local language font using drawtext. Below is the command
ffmpeg -i test.mp4 -vf "drawtext=fontfile=ntr.ttf:text='తెలంగాణ':fontcolor=white:fontsize=72:x=(w-text_w)/2:y=(h-text_h)/2" -codec:a copy output.mp4

    


    and out put is

    


    enter image description here

    


    On the above the used Telugu font ntr , text is తెలంగాణ.If we compare the text the output text characters are not rendered properly.

    


    Let me know what the issue was. I tried with a couple of languages too but it failed.It would be grateful if anyone could help me.
Thanks

    


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