Recherche avancée

Médias (91)

Autres articles (85)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12635)

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

    


  • Anomalie #1993 : Modifications perdues lors d’un retour en arrière (entité no-store)

    27 janvier 2011, par Redmine Admin

    L’entité no-store est livrée à deux endroits : ecrire/inc/headers.php:167 : header("Cache-Control : no-store, no-cache, must-revalidate") ; ecrire/public/balises.php:862 : .’ ?php header("Cache-Control : no-store, no-cache, must-revalidate") ; ?’ Suffit-il de la supprimer là (...)

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