Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (55)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

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

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

  • 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