Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (110)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (14112)

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

    11 août 2023, par Jason z
      

    1. I am adding a bitmap in start of a video, remains there for 2 seconds, then actual video starts, using following command
    2. 


    


    


    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

    


    


      

    1. Then am drawing text on video for first 2 seconds using this :
    2. 


    


    


    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

    


    


    Problem :
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 :
....:a=1[v][a],drawtext=text.....

    


    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.

    


    thanks

    


  • build : Adjust mpeg4video parser dependencies

    16 février 2016, par Diego Biurrun
    build : Adjust mpeg4video parser dependencies
    
    • [DBH] configure
  • 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