Recherche avancée

Médias (91)

Autres articles (48)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9333)

  • How to apply any mask.png on a video with ffmpeg

    18 novembre 2022, par Talha Khalid

    I am adding a 1.mp4 on a video 2.mp4, and i want to add a mask on overlay video(1.mp4)

    


    mask.png

    


    I want to apply this mask on 1.mp4
    
I'm using chrome key right now

    


        ffmpeg -t 5 -r 30 -f lavfi -i color=c=black:s=640x360
    -i 1.mp4
    -i mask2.png
    -i 2.mp4
    -filter_complex "
    [1:v]scale=500x281[v1];
    [2]scale=500x281[mask];
    [v1][mask]overlay, chromakey=0x00FF00:0.25:0.08 [v2];
    [3:v]scale=640x360[v3];
    [0][v3]overlay [out1];
    [out1][v2]overlay=0:0"
    -y output.mp4


    


    output

    


    But it also removes color from videos.
    
I'm not sure but i think it can be done by negate
    
also i don't need audio command, i already done that part
    
Thanks

    


  • In spring manage threads created by one controller's different instances

    14 janvier 2014, par lubovbyc

    I have written a controller to deal with video upload. The hard part for me is to convert the video type to both mp4 and webm. I chose to new a thread in my controller and the thread will new a process which is a video convert software called "ffmpeg".

    The problem is that this thread will occupy too much resources(at least 25% CPU usage). So I guess I have to make these threads created by different controller instances execute in a shared queue. It is terrible to have these threads in concurrent execution.

    It seems that the taskExecutor in Spring can only manage threads created by one controller instance. And is there any way to manage threads among threads created by one controller class but different instances ? It seems like a public or shared thread pool..

  • JavaCV RTMP YouTube Stream results in Error "YouTube is not receiving enough video to maintain smooth streaming , viewers may experience buffering"

    30 novembre 2019, par mindkillerpeacock

    I’m using the RecordActivty.java to stream a live video on YouTube.
    The Stream goes well for around 2-3 minutes but then I get an error YouTube is not receiving enough video to maintain smooth streaming , viewers may experience buffering. And then a few seconds later, the video starts to buffer or becomes choppy, and is not smooth.

    Any solutions ?