Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (108)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (7078)

  • avformat/utils : Update codec_id before using it in the parser init

    8 octobre 2016, par Michael Niedermayer
    avformat/utils : Update codec_id before using it in the parser init
    

    Fixes assertion failure

    Fixes : input.avi

    Found-by : 连一汉 <lianyihan@360.cn>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • FFMPEG : what is the limit of parameter using for text to video ?

    11 juillet 2017, par Bunker Boy

    i am using ffmpeg for text to video conversion and everything working fine just only can not decide how much fontsize can accepted there and height & width limit for video as well as how many characters can allow ?
    the command i am using

    ffmpeg -f lavfi -i color=c=0x000000:s=1600x1600 -vf
    "drawtext=fontfile=PATHOFFONTS/DejaVuSans.ttf:fontsize=96:fontcolor=0xffffff:y=(h-line_h)/2:x=-(4*n)+W:text=’text
    text text long text long text long text’" -r 24 -t 1140
    PATHTOSAVE/video.mp4

    here text moving from right to left.

    -t 1140 // is the time i have calculated separately

    s=1600x1600 then video mime type got corrupted and video is not working well.

    can anybody let me know what is the minimum and maximum range i can pass for fontsize, height, width and text ?

  • FFMPEG - Multiple filters at same time (add background, draw text, add overlay) [closed]

    11 août 2023, par Jason z
      &#xA;
    1. I am adding a bitmap in start of a video, remains there for 2 seconds, then actual video starts, using following command
    2. &#xA;

    &#xA;

    &#xA;

    ffmpeg -i SRC.mp4 -framerate 25 -loop 1 -t 2 -i first-bg.png -f lavfi -t 2 -i anullsrc -filter_complex "[0:v]trim=0:2,drawbox=t=fill[base] ;[1][base]scale2ref=iw:ih:force_original_aspect_ratio=decrease:flags=spline[2nd][base2] ;[base2][2nd]overlay='(W-w)/2' :'(H-h)/2'[padded] ;[padded][2:a][0:v][0:a]concat=n=2:v=1:a=1[v][a]" -c:v libx264 -c:a aac -map "[v]" -map "[a]" -to 0:05 -y z_with_intro.mp4

    &#xA;

    &#xA;

      &#xA;
    1. Then am drawing text on video for first 2 seconds using this :
    2. &#xA;

    &#xA;

    &#xA;

    ffmpeg -i z_with_intro.mp4 -filter_complex "drawtext=text='Structures in C Language':line_spacing=30:x=100:y=100:fontcolor=#FFFFFF:fontsize=96:fontfile=arial.TTF:enable='between(t,0,2)'" -to 0:05 -c:v libx264 -c:a aac -y z_with_text.mp4

    &#xA;

    &#xA;

    Problem :&#xA;I tried combining both of commands by repeating -filter_complex in command, it didn't work, neither when I used comma and append draw text like this :&#xA;....:a=1[v][a],drawtext=text.....

    &#xA;

    Additionally : I also want to add audio from e.g. SRC.m4a for 2 seconds in the beginning of target file where I added intro in first command, how will I do that too, all in single command.

    &#xA;

    thanks

    &#xA;