Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (77)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8390)

  • avcodec/hevc_ps : extract SPS fields required for hvcC construction

    27 septembre 2017, par Aman Gupta
    avcodec/hevc_ps : extract SPS fields required for hvcC construction
    

    Signed-off-by : Aman Gupta <aman@tmm1.net>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hevc_ps.c
    • [DH] libavcodec/hevc_ps.h
  • Overlaying text on video with required angle using FFMPEG

    24 septembre 2017, par Harsha Vardhan

    I am trying to overlay some text on video using ffmpeg. I am able to overlay text by the bellow command.

    ffmpeg -i input1.mp4 -filter_complex "[0:v]transpose=2[anticlockwiserotated];[anticlockwiserotated]drawtext=fontfile=../../public/fonts/Roboto-Regular-webfont.ttf: text='Test Text':x=100: y=50: fontsize=36: fontcolor=white:[textapplied];[textapplied]transpose=1" output_video.mp4

    It is allowing me to overlay horizontally or vertically only.

    But I want to append it with some angle like 45 degrees.

    For that if I modify the command as

    ffmpeg -i input1.mp4 -filter_complex "[0:v]rotate=45*PI/180[anticlockwiserotated];[anticlockwiserotated]drawtext=fontfile=../../public/fonts/Roboto-Regular-webfont.ttf: text='Test Text':x=100: y=50: fontsize=36: fontcolor=white:[textapplied];[textapplied]rotate=315*PI/180" output_video.mp4

    By this I am getting overlay video as :

    enter image description here

    Because in this first I am rotating video to 45 degrees, appending text and bringing it back to original position. So I am loosing borders.

    Please suggest me the best way to overlay text with required angle on video.

    Thanks in advance.

  • Overlaying text on video with required angle using FFMPEG

    11 juillet 2016, par Harsha Vardhan

    I am trying to overlay some text on video using ffmpeg. I am able to overlay text by the bellow command.

    ffmpeg -i input1.mp4 -filter_complex "[0:v]transpose=2[anticlockwiserotated];[anticlockwiserotated]drawtext=fontfile=../../public/fonts/Roboto-Regular-webfont.ttf: text='Test Text':x=100: y=50: fontsize=36: fontcolor=white:[textapplied];[textapplied]transpose=1" output_video.mp4

    It is allowing me to overlay horizontally or vertically only.

    But I want to append it with some angle like 45 degrees.

    For that if I modify the command as

    ffmpeg -i input1.mp4 -filter_complex "[0:v]rotate=45*PI/180[anticlockwiserotated];[anticlockwiserotated]drawtext=fontfile=../../public/fonts/Roboto-Regular-webfont.ttf: text='Test Text':x=100: y=50: fontsize=36: fontcolor=white:[textapplied];[textapplied]rotate=315*PI/180" output_video.mp4

    By this I am getting overlay video as :

    enter image description here

    Because in this first I am rotating video to 45 degrees, appending text and bringing it back to original position. So I am loosing borders.

    Please suggest me the best way to overlay text with required angle on video.

    Thanks in advance.