Recherche avancée

Médias (91)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (2511)

  • video overlay on another video with rounded corner, transparency, opacity, scaling, and border all together with FFMPEG in PHP

    8 février 2020, par Avan Shrivastava

    I am trying to change a video with Rotation, rounded corner, transparent, scaling, and border all with together and overlay on a video ; I am trying to do this with FFMPEG in PHP but getting issue in transparent background ; I am getting green background please help ;

    ffmpeg -i empt_vid_5891581054410.mp4 -i merged-571580302534.mp4 -filter_complex "[1:v] rotate=- 30*PI/180:ow=rotw(iw):oh=roth(ih):c=none [rotate] ;[0:v][rotate] overlay=40:10:enable=’between(t,2,7)’, colorchannelmixer=aa=0.5" -auto-alt-ref 0 -pix_fmt yuv420p -c:a copy overlayavatar.mp4

  • How to loop and combine video and audio streams of random length into one video file with ffmpeg ?

    8 janvier 2019, par Arkadiy Bolotov

    I have a video file (let’s say 5-10 seconds) and a audio file (5-300 seconds). I would like to loop and merge them into a resulting video of known length (let’s say 50-60 seconds). How would I do that in ffmpeg ?

  • Render video till video duration with filters

    30 juin 2021, par Konduri Sai Aditya

    In the below example, I need to render video with video time duration(i.e mp4)But this causes video execution to an infinite loop.

    


    ffmpeg -i v.mp4 -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -filter_complex overlay  -y output.mp4


    


    It should also work with vice versa

    


     ffmpeg  -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -i v.mp4 -filter_complex overlay  -y output.mp4


    


    For the above command, the output video should be rendered till mp4 time duration.

    


    Please help me.