Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (106)

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (12864)

  • ffmpeg using downloaded google font

    10 juin 2021, par ekato

    I am using the following code to hardsub the video and it works perfectly.

    


    ffmpeg -i "pure.mkv" -lavfi "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18'" -c:a copy "output.mkv"


    


    I would like to use a google font link, I am using the following code, but the subtitle font is still the original one.

    


    ffmpeg -i "pure.mkv" -vf "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18,fontfile="c\:\\Users\\...\\Bfont.ttf"'" -c:a copy "output.mkv"


    


    I have totally no idea what could be the problem.

    


  • Is FFmpeg a part of recent APIs ?

    15 octobre 2015, par Léon Pelletier

    When using MediaCodec and MediaMuxer, I’ve noticed some mentions of ffmpeg in the logs. Does it means that a part of FFmpeg has been integrated into Android Framework ? Can I call it ?

  • 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