Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (35)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6449)

  • ffmpeg + play video loop

    3 septembre 2013, par Javier Ramírez

    Does anyone know how to make a video using ffmpeg + Opengl play continuously ?. Because this is only played once

    tiempo = glfwGetTime();
    duracion = 1.0/25.0; // 1 second / 25 fps

    while(1){

    ...        

     if(glfwGetTime() > tiempo + duracion){
       if(av_read_frame(pFormatCtx,&packet) >= 0){
         if(packet.stream_index == 0){
           avcodec_decode_video2(pCodecCtx,pFrame,&frameFin,&packet);
           if(frameFin)sws_scale(img_convert_ctx,pFrame->data,pFrame->linesize,0,pCodecCtx->height,pFrameRGB->data,pFrameRGB->linesize);
         }
         av_free_packet(&packet);
       }
       tiempo += duracion;
     }

    ...

    }

    I know av_read_frame function (...) returns 0 if the end of file. But how do I make the function again returns a value other than zero ? o How I can I make the video is constantly repeated ?

  • rtp : Fix play multiple multicast streams with the same port

    7 janvier 2016, par Zhao Zhili
    rtp : Fix play multiple multicast streams with the same port
    

    We cannot play multiple multicast streams with the same port at the
    same time. This is because both rtp and rtcp port are opened in
    read-write mode, so they will not bind to the multicast address. Try
    to make rtp port as read-only by default to solve this bug.

    Signed-off-by : Zhao Zhili <wantlamy@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtpproto.c
    • [DH] libavformat/rtsp.c
  • High time delay : using ffmpeg to open camera and ffplay to play

    28 février 2021, par hgwd

    I'm working on a project which using ffmpeg to open camera and ffplay to play, but ffplay always have a high time delay which really confused me.

    &#xA;

    These are my commands :

    &#xA;

    ffmpeg -f avfoundation -s 1280x720 -r 30 -i 0 -pix_fmt yuv420p -f h264 -vf scale=640:360 udp://127.0.0.1:4000&#xA;ffplay udp://127.0.0.1:4000&#xA;

    &#xA;

    My environment :

    &#xA;

    OS: macOS Catalina 10.15.7&#xA;CPU: 2.3GHz two Intel Core i5&#xA;Memory: 8GB&#xA;

    &#xA;

    Is anyone can help me ? Thanks !

    &#xA;