Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (59)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (4568)

  • ffmpeg - Text fontcolor is changed (faded) because of alpha(I think). Is there any possibility to avoid this behavior ?

    13 mai 2019, par Bedrule Paul

    I am using following command

       ffmpeg -i ~/Desktop/input.mp4 -filter_complex  "color=black:100x100[c];\
    [c][0]scale2ref[ct][mv]; \
    [ct]setsar=1,split=1[t1]; \
    [t1]drawtext=text='Test Text 1':fontsize=36:fontcolor=#13348b\
    ,split[text1][alpha1]; \
    [text1][alpha1]alphamerge,rotate=30:ow=rotw(30)\
    :oh=roth(30):c=black@0[txta1]; \
    [mv][txta1]overlay=x='min(0,-H*sin(30))+500':\
    y='min(0,W*sin(30))+350':shortest=1" \
    ~/Desktop/result.mp4 -y

    I think alpha is the problem, but I don’t know how to avoid it.

  • Enhance text image in x264 encoding

    24 août 2016, par useprxf

    I’m making use of x264 for remote desktop streaming. The goal is to achieve both low bitrate and high video quality within the computation budget. The current parameter set I used almost achieve this goal, but it fails in handling images with many texts (e.g. browsing websites scene). The text in image is blurred and affects the user experience.

    I think it’s the quantization in x264 that causes this. The quantization after DCT transform will eliminate high frequency sinals which mainly correspond to texts in image.

    So, my question is how to improve the text quality in x264 encoding ?

    My idea : when the bitrate stays at a low level for a period of time,

    1. set crf to be 0 (lossless) ;
    2. encode current frame as an IDR frame and then send it ;
    3. recover the crf.

    Also, a flag should be used to prevent resending when bitrate keeps low for a long time. I haven’t try this method since I don’t know how to mark a frame as an IDR frame manully and then encode it.

  • avcodec/mips : [loongson] refine process of setting block as 0 in h264dsp_mmi.

    28 juillet 2019, par Shiyou Yin
    avcodec/mips : [loongson] refine process of setting block as 0 in h264dsp_mmi.
    

    In function ff_h264_add_pixels4_8_mmi, there is no need to reset '%[ftmp0]'
    to 0, because it's value has never changed since the start of the asm block.
    This patch remove the redundant 'xor' and set src to zero once it was loaded.

    In function ff_h264_idct_add_8_mmi, 'block' is seted to zero twice.
    This patch removed the first setting zero operation and move the second one
    after the load operation of block.

    In function ff_h264_idct8_add_8_mmi, 'block' is seted to zero twice too.
    This patch just removed the second setting zero operation.

    This patch mainly simplifies the implementation of functions above,
    the effect on the performance of whole h264 decoding process is not obvious.
    According to the perf data, proportion of ff_h264_idct_add_8_mmi decreased from
    0.29% to 0.26% and ff_h264_idct8_add_8_mmi decreased from 0.62% to 0.59% when decoding
    H264 format on loongson 3A3000(For reference only , not very stable.).

    Reviewed-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/h264dsp_mmi.c