Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (32)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5974)

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