Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (29)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (4308)

  • Change gray pixel to black pixels in video

    12 janvier 2023, par yabru

    I want to change every gray pixel in my video with the (r,g,b) 158,158,158 to black 0,0,0

    


    I've tried the solution of THIS post, but backwards. I just do not understand the syntax.

    


    ffmpeg -y -I my_video.mp4 -c copy -c:v libx264 -preset ultrafast -vf "yadif,format=rgb24, lutrgb=r='if(eq(val,158),0,val)':g='if(eq(val,158),0,val)':b='if(eq(val,158),0,val)'" my_video_fixed.mp4

    


    ^ doesn't change anything

    


    could anyone help me modify my command (with an explanation of the solution) :)

    


    version : ffmpeg version 5.1.2

    


  • How to split ffmpeg output into multiple files ?

    15 novembre 2020, par Genius Billionaire

    What I want to happen : the equivalent of this : split -n 4 output.mp4, which generates 4 files. Only the first file is "valid mp4" that you can play. The other 3 files rely on the previous file.

    


    A similar request can be seen here : https://lists.ffmpeg.org/pipermail/ffmpeg-user/2013-May/015090.html

    


    Why I want this to happen : running FFMPEG in the browser, which means 1) file size limit, 2) I don't have the Linux command split to help me out, just FFMPEG. If I can get FFMPEG to output files of X MB each, I can iteratively delete files as soon as I've read them.

    


    EDIT : as a commenter asked, yes it is possible to run several ffmpeg commands if necessary.

    


    The right solution is not using segments. The following example command generates several 4 valid mp4 files. That's not exactly what I want.
ffmpeg -i ../flv.flv -segment_time 5 -f segment -t 20 %d.mp4

    


    This other solution also does not work (it's the same output as previous incorrect solution) :

    


    ffmpeg -i ../flv.flv -ss 00:00:00 -t 5 1.mp4

    


    ffmpeg -i ../flv.flv -ss 00:00:05 -t 5 2.mp4

    


  • How can I create a dynamic video and stream to Tiktok ? (node.js, canvas, tiktok) [closed]

    18 mai 2022, par Иван Иванов

    I need to create dynamic videos with canvas, node.js, ffmpeg. I need this video stream on tiktok.
Maybe something like that would work for me.
https://github.com/fbsamples/Canvas-Streaming-Example

    


    But I don't understand how to organize a broadcast on tik tok. Perhaps you have a solution or you faced a similar problem. I will be glad if you share a solution. Perhaps you can suggest an alternative.