Recherche avancée

Médias (91)

Autres articles (111)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (5831)

  • Localization : Add Hindi translation (#2453)

    11 novembre 2022, par saurabhsharma2u
     Localization : Add Hindi translation (#2453)
    

    * Localisation : Update Hindi (India) translation

    * Hindi Translation for Step Method

    * HIndi-India Local messages for additional method

    * file rename as per ISO 639-1 format

    * removed duplicate message, causing the test fail

    * removed duplicate "cifES" error message

  • Correct hindi text drawing when using ffmpeg

    28 février 2024, par OhhhThatVarun

    I have a ffmpeg script to add some Hindi text to the mp4 video file.

    


    The ffmpeg command looks like this

    


    ffmpeg -i template_video.mp4 -filter_complex "drawtext=text='नमस्कार जी मैं हूँ':fontfile=mukta.ttf:fontsize=40:box=1:boxcolor=black@0.5:boxborderw=5:x=530:y=530:enable='between(t,20,22)'[output]; [output] drawtext=text='आज हम स्कैन करेंगे':fontfile=mukta.ttf:fontsize=20:box=1:boxcolor=black@0.5:boxborderw=5:x=100:y=100:enable='between(t,15,20)'[outv]" -map "[outv]" -map 0:a? -c:a copy -pix_fmt yuv420p -s 1080x1920 output_video.mp4 -y


    


    Expected :

    


    enter image description here

    


    Actual :

    


    Image of hindi text rendered on video using ffmpeg

    


    Image of hindi text rendered on video using ffmpeg

    


    As you can see the Hindi half letters are not getting rendered.

    


    I have gone through and tried these links :

    


    This question and This question

    


    I also tried this Github link

    


    Am I missing something to make it render properly ?

    


  • FFmpeg drawtext support for Hindi fonts

    28 février 2024, par Vinoth Poovalingam

    We are trying to use FFmpeg drawtext to support Hindi fonts. But the ordering of the data is not correct.

    


    The unicode for Hindi text is passed like this

    


    1. पिता माता िस्रफ


    


    But output renders as

    


    enter image description here

    


    Have used the following code for generating the output

    


    ffmpeg  -framerate 30 -t 10 -i /opt/test.png drawtext=text_shaping=1:fontcolor=white:fontsize=60:fontfile=/usr/share/xx.ttf:text='1. पिता माता िस्रफ':y='max(550,700-t*200)':x=40,format=yuv420p[v] /usr/share/nginx/html/hello_v.mp4


    


    Had done harfbuzz support and --libfribidi is also enabled.

    


    The problem is the text gets drawn from left to right. Also found there is a use_kerning flag in drawtext, will that help, if yes how to use it.