Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (98)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (7670)

  • tests/checkasm/checkasm : Do not define an unused function.

    31 janvier 2019, par Carl Eugen Hoyos
    tests/checkasm/checkasm : Do not define an unused function.
    

    Fixes the following warning :
    tests/checkasm/checkasm.c:615:12 : warning : 'bench_init_ffmpeg' defined but not used

    • [DH] tests/checkasm/checkasm.c
  • FFMPEG - fade in logo watermark independent of fade in video and subtitles

    14 mai 2017, par Corpuscular

    I’m on a windows 7 box using FFmpeg version : 20170223-dcd3418 and would like to control the fade in timing of my logo watermark independent of the fade already built in to my video.

    This code is working OK but I can’t work out how to fade the watermark without also fading my input video stream.

    ffmpeg -y -i mainvideo.mp4 -i watermarklogo.png -filter_complex "[0:v]overlay=W-w-10:H-h-10, fade=in:0:20[tmp_overlay]; [tmp_overlay]subtitles=ep1.srt[out]" -map [out] -map 0:a -codec:v libx264 -crf 18 -preset slow -pix_fmt yuv420p -c:a aac -strict -2 output.mp4

    I’ve tried a number of combinations but am out of my depth with FFMPEG’s -filter_complex command so any help would be appreciated. Please let me know if I can provide further information.

  • ffmpeg - add logo in a specific time interval

    14 novembre 2014, par Kåre Brøgger Sørensen

    Is there a way - in a one liner - where I do not have to use ffmpeg to calculate the duration of the whole video before i render ..

    I would like something like :

    ffmpeg -i ny_video_no_logo.mp4 -i /Pictures/home_logo_roed_new.png -filter_complex "[0:v][1:v]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable=’between(t,5.50,FULl_LENGTH - 10)’" -codec:a copy out.mp4

    I there a simple way like the "main_w" to get the video length inserted - I am using a non existing variable FULL_LENGTH in the above ?

    Or do i have to make a ffmpeg -i and extract the time from this ?