Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (101)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (9105)

  • Révision 21617 : #3099 : complement a r21438 pour ne pas introduire de rupture de compat pour les...

    15 octobre 2014, par cedric -
  • Ffmpeg : How to remove text drawnusing drawtext

    27 septembre 2015, par ram

    Using the below command to draw text over a video file.

    ffmpeg -i /home/user/source.mp4 -vf "drawtext=fontfile=/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf: text='Sample text':fontsize=40:x=300:y=100" /home/user/destination.mp4

    Question 1 : Will there be any way by which i could remove text drawn ("Sample text") from the final video "/home/user/destination.mp4" and have a new mp4 with the same video data without the text drawn ?

    Question 2 : Is there any way to know what was the text added to the video "/home/user/destination.mp4" ?

  • FFMPEG - Fade Out a Scrolling Text From Right to Left

    26 mai 2022, par shawn

    I am trying to fade out a scrolling text. I expect the characters to fade out one by one while the text is scrolling from left to right.

    


    Expected effect

    


    I tried some codes but the fading effect is disappearing the whole text instead of the characters.

    


    DS=1.0 # display start
DE=5.0 # display end
FID=1.0 # fade in duration
FOD=5.0 # fade out duration

drawtext=text='Robotics':fontsize=50:fontcolor_expr=ff0000%{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 }


    


    drawtext=alpha=if(lt(t\,4)\,(1-(t-3))/1\,0)))):fontcolor=black:fontsize=50:text="Robotics":x=(w-text_w)/2:y=(h-text_h)/2


    


    Is there any ways to achieve it ?