Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14069)

  • How to set FFmpeg overly text opacity / transparent ?

    28 novembre 2022, par ujjally

    I want to add overly text into video with custom opacity or transparent like 50% 80%

    


    ffmpeg -i video.mp4 -vf drawtext="fontfile='C\:/Users/BRIGHT/AppData/Local/Microsoft/WINDOWS/fonts/RacingSansOne-Regular.ttf':text='YouTube.com':fontsize=h/15:fontcolor=yellow@0.5:bordercolor=white:borderw=1:y=(h-text_h*24):x=(mod(-0.5*n\,w+tw)-tw)" -codec:a copy output.mp4


    


  • Overlay text on video with moviepy

    3 août 2020, par bantix

    So this is a simplification of what I have.

    


    from moviepy.editor import *
L = []
for file in files:
     video = VideoFileClip(file)
     text = TextClip(txt='foo', fontsize=12, color='white').set_position(("right", "bottom")).set_duration(10)
     video = CompositeVideoClip(clips=[text, video])
     L.append(video)


    


    At the end I call :

    


    final_clip = concatenate_videoclips(L, method='compose') # this is a moviepy function
final_clip.write_videofile(output, fps=24, logger=None, write_logfile=False)


    


    It outputs a black screen video (with the correct length) that sometimes produces a file system error if opened under Windows.
Am I missing something here ?

    


  • FFMPEG - scrolling text in area

    25 juin 2021, par Marcin Woźniak

    I try to make scrolling news ticker on a video as overlay.
I have created a PNG background with a specified place where where i want to scrolling text appear.

    



    I tried with this :

    



    ffmpeg -i INPUT.mp4 -vf "drawtext=textfile=ticker.txt:fontfile=BebasNeue-Regular.ttf:y=h-line_h-10:x=w-mod(w*t/25\,2400*(w+tw)/w):fontcolor=white:fontsize=40:shadowx=2:shadowy=2" -codec:a copy output.mp4

    



    but this command scrolls text from right margin to left margin.

    



    What i want to achieve is that scrolling text scrolls only in selected boundary box i set (in example starts from 100px from right and ends 100px from left).

    



    I didnt find any answer here or in Google - every example scrools from left to right directly.