Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 ;

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

  • avfilter/vf_pad : revert part of 57c3670896c69714ca

    12 mai 2017, par Paul B Mahol
    avfilter/vf_pad : revert part of 57c3670896c69714ca
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_pad.c
  • ffmpeg doesn't render a full url, not a protocol part

    25 juin 2017, par Jodimoro

    I want to render an url in a video via ffmpeg. This works well :

    ffmpeg -i test.mp4 -vf drawtext="fontfile=[......]: text='example.com': [..........]

    But this renders only the "https" and nothing else :

    ffmpeg -i test.mp4 -vf drawtext="fontfile=[......]: text='https://example.com': [..........]

    How to fix this ?

  • FFMPEG slow / fast motion part a video anywhere

    27 juin 2017, par Muhammad Umar

    I am trying to cut a part of Video

    Here is the code i have tried
    Let’s say i have 6 seconds video and i want to slow down 2:5 seconds video that 3 second video

    First approach after searching is, Cut the video, then apply slow filter then concat it with original video. But this is a mid part not entire video. How can i modify below code

    ffmpeg -i Soon.mp4 -filter_complex
    [0:v]trim=2:5,setpts=PTS-STARTPTS[v1] ;[v1]setpts=0.5PTS[v1] ;[0:a]atempo=2[a]
    concat=n=1:v=1:a=1 -map "[v]" -map "[a] -preset superfast -profile:v
    baseline output.mp4