Recherche avancée

Médias (91)

Autres articles (65)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (12652)

  • Additional : Add Brazillian CNH number (Carteira Nacional de Habilitac…

    5 novembre 2018, par joaoissamu
    Additional : Add Brazillian CNH number (Carteira Nacional de Habilitacao) (#2234)
  • How to change colour in WebM video using FFMPEG

    21 septembre 2020, par gowtham kosaraju

    I Have a web video file in this want to change the colour of the video pixels which are in black to blue color. I tried with the below command.

    


    Input video :
https://share.getcloudapp.com/WnuJoLGX

    


    ffmpeg -vcodec libvpx-vp9 -i input.webm -filter_complex "[0:v]format=rgba,lutrgb=r='if(eq(val,0),240,val)':g='if(eq(val,0),111,val)':b='if(eq(val,0),69,val)':a='val'[out]" -vcodec libvpx-vp9 -map "[out]" output.webm


    


    Output video : https://share.getcloudapp.com/geuzn6be

    


    But output video looks stuttering at the edges. Can anyone guide me on how to make video smoother ?

    


  • How to change the colour of pixels in videos with OpenGL in C++ [closed]

    8 juin 2020, par Dennio

    I would like to overlay a specifically coloured pattern or matrix over every frame of a video, so that every pixel changes it's color slightly corresponding to a data-matrix which I generate from a bitstream. It would begin with the upper left pixel and would go on till the end of the "line" and so on. I would like to change the red and blue values which means if the bitstream begins with a "1" the amount of red should be raised by 5 and if it begins with a "0" the amount of blue should be raised by 5. That would be done for every pixel of the frame.

    



    I can already open a video using FFmpeg in a selfmade videoplayer, I can also generate the data-matrix but I just don't know which way is suitable to manipulate the videoframes in c++. I already successfully compiled some OpenGL and OpenGL ES triangles on my RaspberryPi 4. Is it possible to convert the frames and pixels into textures and go from there to display everything ? Or is there maybe a better way to do this ? I would like to use the GPU of the RaspberryPi for the tasks to get a good performance out of this.