Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (96)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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 (8532)

  • 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

  • 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 !

  • 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