Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (28)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

Sur d’autres sites (4315)

  • avfilter/af_surround : make volume configurable for front center and lfe channel

    26 août 2017, par Paul B Mahol
    avfilter/af_surround : make volume configurable for front center and lfe channel
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_surround.c
  • Program terminating while reference the front packet in queue

    5 juillet 2018, par Trần Quốc Việt

    I have 2 threads to decode RTSP stream video, my code as below :

       int key = 0;
       std::queue<avpacket> Packet_buf;

       int thread1 (void)
       {
              AVPacket packet;
              packet = read_packet();
              Packet_buf.push(packet);
              av_packet_unref(&amp;packet);
              key = 1;
       }

       int thread2 (void)
       {
             AVPacket *packet;
             while(key==0) {} // wait to read the first packet
             *packet = Packet_buf.front(); // program halt here
             avcodec_send_packet(pCodecCtx,packet);
       }

       int main();
       {
            thread p1(thread1);
            thread p2(thread2);
       }
    </avpacket>

    My program crash at line : *packet = Packet_buf.front() ;

    Can you help me to find the problem, Thanks !

  • Decoding h.264 in node.js without ffmpeg and send it to front or save it in fs

    5 mars 2019, par JT.v26

    I’m doing the final project of a bootcamp.

    The project consists of controlling a drone (Tello) with a mobile phone. So for this project I’m using react native. In which I insert a node.js inside the application (Node.js for Mobile Apps React Native) since the drone creates a wifi and I lose internet access to connect to a remote server.

    All right so far, the drone has three udp ports enabled on the sdk to receive instructions, send status and send video.
    The video gives it to me in raw.

    I did a test on the computer, downloading ffmpeg and converting that data and I could effectively have the video retransmission.

    My questions are :

    Is there any way I can use the same technique on the mobile without needing ffmpeg ?

    Is there any way to import ffmpeg into android and communicate with nodejs ?

    Is there any other solution where I can use another node that doesn’t have to be on the phone ?

    Or you may even find some other solution to address this problem.

    Thank you very much in advance