Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (73)

  • 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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (8879)

  • How do I speed up a video to a specific time for instance 'n' seconds in FFMPEG ?

    24 novembre 2022, par user3475182

    When using python moviepy library, you can speedup a video to a specific time using the below command :

    


    video.fx(vfx.speedx, final_duration=audio_duration)


    


    Is there a way we can achieve the same using ffmpeg ?

    


    I tried the below commands ; but this will not accurately speed up the video to a specific time.

    


    ffmpeg =i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]asettps=0.5*PTS[a]" -map "[v]" -map "[a]" output.mp4


    


  • avfilter/af_surround : speed up slice threading for stereo upmixing

    13 novembre 2022, par Paul B Mahol
    avfilter/af_surround : speed up slice threading for stereo upmixing
    

    And add stereo->octagonal/8.0 upmix.

    • [DH] libavfilter/af_surround.c
  • Ffmpeg scroll speed not changing

    15 novembre 2022, par J C

    I am trying to change scroll speed of a video.
ffmpeg -loop 1 -i 'document-%02d.jpg' -vf "scroll=vertical=0.02,crop=iw:600:0:0,format=yuv420p" -t 20 output.mp4
And
ffmpeg -loop 1 -i 'document-%02d.jpg' -vf "scroll=vertical=0.51,crop=iw:600:0:0,format=yuv420p" -t 20 output.mp4
Gives same result.

    


    It works for single image. But when i add %02d for multiple it not works.