Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (36)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

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

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

    


  • How to remove colour background into transparent or other colour with ffmpeg ?

    10 mars 2019, par FillzZ

    My video is like in this picture. I need to remove blue background into transparent or other colour. How can I make it ?enter image description here