Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (70)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (13888)

  • ffmpeg giving text not found error

    18 juin 2012, par knishua

    arial.ttf is present in C :\Windows\Fonts folder. running

    ffmpeg.exe -i D :\imagesequence\test.mov -vf drawtext="arial.ttf=':text='TEST'" D :\imagesequence\testo.mov

    or

    ffmpeg.exe -i D :\imagesequence\test.%04d.jpg -vf drawtext="arial.ttf=':text='TEST'" D :\imagesequence\testo.mov

    results in

    ffmpeg.exe -i D:\imagesequence\test.%04d.jpg -vf drawtext=fontf
    ile="arial.ttf=':text='TEST'" D:\imagesequence\testo.mov
    ffmpeg version N-34549-g13b7781, Copyright (c) 2000-2011 the FFmpeg developers
     built on Nov  6 2011 22:02:08 with gcc 4.6.1
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-ru
    ntime-cpudetect --enable-avisynth --enable-bzlib --enable-frei0r --enable-libope
    ncore-amrnb --enable-libopencore-amrwb --enable-libfreetype --enable-libgsm --en
    able-libmp3lame --enable-libopenjpeg --enable-librtmp --enable-libschroedinger -
    -enable-libspeex --enable-libtheora --enable-libvo-aacenc --enable-libvo-amrwben
    c --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-
    libxvid --enable-zlib
     libavutil    51. 24. 0 / 51. 24. 0
     libavcodec   53. 28. 0 / 53. 28. 0
     libavformat  53. 19. 0 / 53. 19. 0
     libavdevice  53.  4. 0 / 53.  4. 0
     libavfilter   2. 47. 0 /  2. 47. 0
     libswscale    2.  1. 0 /  2.  1. 0
     libpostproc  51.  2. 0 / 51.  2. 0
    Input #0, image2, from 'D:\imagesequence\test.%04d.jpg':
     Duration: 00:00:01.24, start: 0.000000, bitrate: N/A
       Stream #0:0: Video: mjpeg, yuvj420p, 768x576 [SAR 1:1 DAR 4:3], 25 fps, 25 t
    br, 25 tbn, 25 tbc
    File 'D:\imagesequence\testo.mov' already exists. Overwrite ? [y/N] y
    w:768 h:576 pixfmt:yuvj420p tb:1/1000000 sar:1/1 sws_param:
    [drawtext @ 01C80260] Could not load fontface from file 'arial.ttf=': cannot ope
    n resource
    Error initializing filter 'drawtext' with args 'fontfile=arial.ttf=:text=TEST'
    Error opening filters!
  • ffmpeg add text with fade in effect

    1er octobre 2017, par levi

    I am trying to create a simple music video with a single image background and the lyrics showing up in a fade in and fade out effect during the video.

    Like stuff done with After Effects. Can a quality fade in and fade out be done with ffmpeg ?

    What would be the command to call when trying to achieve a simple text fading in the middle of the video at about 10s, fading out at 15s and then the next one ? etc...

    If possible please include a solution with background image.

  • Moviepy swap text mid video

    22 mai 2022, par Runeater DaWizKid

    I want to write text to a video and have it change mid playback, this is what I've tried but it overlays each text on eachother and only displays the text for 5 seconds ?

    


    def generateVideo(initial_text, secondary_text, tertiary_text):
    text_clip = TextClip(txt=initial_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip = text_clip.set_position('center').set_duration(5)

    text_clip_secondary = TextClip(txt=secondary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(10).cutout(0, 5)

    text_clip_tertiary = TextClip(txt=tertiary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_tertiary = text_clip_tertiary.set_position('center').set_duration(15).cutout(0, 10)
    
    new_video = ColorClip(size=(1920, 1080), color=(0,0,0), duration=15)
    new_video.fps = 24
    
    new_video = CompositeVideoClip([new_video, text_clip, text_clip_secondary, text_clip_tertiary])

    new_video.write_videofile(codec='mpeg4', filename="test.mp4")
    new_video.close()


    


    Anyone see what im doing wrong ?

    


    Edit :
I've also tried the appropriate calls to subclip(pos1, pos2), ie

    


    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(15).subclip(5, 10)


    


    With the same results