Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (72)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6953)

  • How to sample `audio/video bit rate and fps ` every second on ffmepg

    25 février 2014, par poc

    I can dump the rtsp streaming into video file by

    ffmpeg -y -t 5  -i rtsp://172.19.1.42/live.sdp -acodec copy -vcodec copy lala.avi

    Now, I wanna sample the streaming's audio/video bit rate and fps every second and dumpinto a text file,

    I can write a script for helping the work ,How could I get it ?

  • Playing video from webcam in linux

    28 novembre 2014, par SounBum Song

    Im looking for some ways to stream video frame from webcam on python Tkinter.

    Im trying to get frames from webcam by ffmpeg/v4l2

    and stream it on Tkinter and send the frame to network simultaneously(dont wanna use ffserver).

    Im confusing that how I can get frame with ffmpeg/v4l2(which libraries should i use ?)

    How can I read the frame on Tkinter(Maybe Gstreamer) from ffmpeg/v4l2

    If my idea is wrong.... someone can give me a good direction ??

  • How to write image to ffmpeg with multi thread

    19 septembre 2022, par chromize

    I'was trying to encode video from opencvSharp mat to ffmpeg.
Now,It's.done. But,It has low speed encoding problem.

    


    for (int  StartFrame = 0; StartFrame < EndFrame; StartFrame ++)
{                  
    using (var ms = new MemoryStream())
    {     
        //read mat from videocapture
        Mat mat =CreateRenderingMat(StartFrame)
        BitmapConverter.ToBitmap(mat).Save(ms, ImageFormat.Bmp);
        ms.WriteTo(proc.StandardInput.BaseStream);
        Cv2.WaitKey();
        mat.Dispose();
        ms.Dispose();
        ms.Close();
        Debug.WriteLine(movePos.ToString());
     }
 }


    


    Now, I wanna manage it with multi threading.
But,I don't make sence.
Tell me some advice. Thank you.