Recherche avancée

Médias (91)

Autres articles (101)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6208)

  • 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