Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (58)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5315)

  • usding ffmpeg How set watermark to video , and how split one video to multiple video using ffmpeg [on hold]

    7 décembre 2013, par user2452749

    Resp. sir

    i have quest about

    ffmpeg

    1) usding ffmpeg How set watermark to video ,
    2) and how split one video to multiple video using ffmpeg

  • FFMPEG Overlay one video on top of another video at specific location

    11 août 2018, par Ewan Sou

    I have two videos (in mp4 format). I would like to put one video on top of the other video

    • Both videos have the same duration
    • The bottom video is of resolution 640px by 640px
    • The top video is also of resolution 640px by 640px

    I need to scale down the top video resolution to 580px by 580px. Then I need to position it in a specific location on top of the bottom video.

    I tried the below quote

    ffmpeg -i bottom.mp4 -i top.mp4 -filter_complex "[0:0][1:0]overlay=enable='between(t\,0,50)'[out]" -shortest -map [out] -map 0:1 -pix_fmt yuv420p -c:a copy -dn -c:v libx264 -crf 18 output.mp4

    It does allow me to put the top video on top of the bottom video I think. But the top video was not scaled down in size. Also, this top video is by default on the top left corner of the bottom video.

    In additional, somehow, the very first frame will not show the top video at all. Only at around the 0.5sec will the top video appear. Is there any way to make it such that the top video is showing at the very first frame too ?

    Thank you all in advance !

  • Create video trailer (mp4) with FFMPEG and PHP from long mp4 video [on hold]

    23 octobre 2015, par user1887681

    i have a video site and i want to make trailers for all videos.
    ie I have to make a 12 second video from 4 randomly increments of 3 seconds each from the full video.

    Has anyone tried it ?