Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (36)

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

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6688)

  • ffmpeg h264_qsv Coded memory leak

    16 août 2018, par donghui.R

    I am developing in C++, using libx264 encoder to encode and push rtsp stream, I can see that the program memory will not rise in the task manager, but when I use the h264_qsv encoder, the program memory will slowly rise, this problem is bothered I have been here for a long time, please help me !

  • Terminating a c function

    17 février 2014, par dempap

    I want to make a function in c, that will capture video under Linux. I embedded ffmpeg command via system() in my c program, which captures video. ffmpeg terminates by pressing [q]. How can I include termination into my c program.

    This function is part of a server.c program. When client requests for termination, I want video cature function to terminate. Is this possible ?

    #include
    #include


    main()
    {

    char command[180];

    sprintf(command, "ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 out.avi");
    system(command);

    }
  • How do VLC implement UDP video streaming

    1er novembre 2015, par Tim Hsu

    I am trying to write a video streaming program.

    I’ve tried TCP but the latency is too large which can not be accepted.

    However UDP can only send 2^16 - sizeof(UDP header) for one packet

    Plus UDP does not guarantee receiving order.

    Can anybody explain how does video streaming possible with UDP ?

    How do those program such as ffmpeg and VLC implement it ?

    In addition, RTP is based on UDP. I wonder if there’s any different between UDP streaming and RTP