Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • 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

Sur d’autres sites (10836)

  • How to restrict ffmpeg to use only 50% of my CPU ?

    21 septembre 2016, par zukes

    i m using ffmpeg for streaming my desktop over UDP but my problem is ffmpeg’s process always takes 100% cpu for the entire time it is running leaving no room other application , my question is how can i restrict ffmpeg’s process to take up only 50-60% of cpu ?

    My cpu has single core
    2 gb ram

  • ffmpeg : process each image frame after capturing with x11grab

    21 juin 2012, par cache

    Programmatic way to process each image frame right after capturing using x11grab in ffmpeg

    For example, I have a program that captures screenshots from x display using command :

    ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg

    '-r 25' means there are 25 frames being captured in a second. And my question is how to process each frame(image) and decide whether I want to keep this frame or drop it right after each image is captured. I guess this should be done in C by adding some code in x11grab.c.

  • FFmpeg get header size

    25 juin 2012, par DEgITx

    The question is to get header size from format context (AVFormatContext) in ffmpeg.

    Now i'm using first packet position to get it :

    avformat_open_input(&m_formatContext, m_openedFilePath.toStdString().c_str(), NULL, NULL);
    //...
    AVPacket packet;
    if(av_read_frame(m_formatContext, &packet) >= 0)
       printf("Header size: %d", packet.pos); // First readed packet will be with header offset

    Any better way to do it without reading frame ?