Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (97)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (12710)

  • jpeg2000dec : Use correct printf length modifier for pointer differences

    13 mai 2013, par Diego Biurrun
    jpeg2000dec : Use correct printf length modifier for pointer differences
    

    Also eliminate an unnecessary cast. Fixes the following warning :
    jpeg2000dec.c:1200:20 : warning : format ‘%lX’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘long long unsigned int’

    • [DBH] libavcodec/jpeg2000dec.c
  • avformat/tls_openssl : fix warnings when openssl is lower version

    15 juin, par Jack Lau
    avformat/tls_openssl : fix warnings when openssl is lower version
    

    api doc : https://docs.openssl.org/1.0.2/man3/BIO_s_mem

    In higher versions (openssl 1.0.2 and higher),
    the function signature is BIO *BIO_new_mem_buf(const void *buf, int len),
    so passing a const string doesn't cause an warnings.
    However, in lower versions of OpenSSL,
    the function signature becomes BIO *BIO_new_mem_buf(void *buf, int len),
    which leads to warnings.

    OpenSSL guarantees that it will not modify the string,
    so it's safe to cast the pem_str to (void *) to avoid this warning.

    Signed-off-by : Jack Lau <jacklau1222@qq.com>
    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/tls_openssl.c
  • FFMPEG output rate constant at 30 fps

    14 septembre 2015, par user2610280

    I need to keep the output fps of my video file to constant 30 fps. This is being used in a video recorder that is getting live input from a 3rd party server.

    I tried using following commands :

    ffmpeg -f rawvideo -pix_fmt yuv420p -s 200x600 -y -an -i pipe:0 -vcodec libx264 -filter:v 'setpts=N/(30*TB)' -crf 20 -g 30 test.mp4

    ffmpeg -f rawvideo -pix_fmt yuv420p -s 200x600 -r 30 -y -an -i pipe:0 -vcodec libx264 -filter:v -r 30 -crf 20 -g 30 test.mp4

    But in both the cases I get a video file of a shorter duration when there are less number of frames at the input.

    What I mean to say is,
    If I give a burst of 10 frames, then no frames for 10 seconds and again a burst of 10 frames no frames for 10 seconds and again a burst of 10 frames and again no frames for 10 seconds, as the input to above command ;
    I get output with duration, 1second !

    I need it to be 30 seconds, since I have given the input of duration 30 seconds.

    According the the ffmpeg manual, "-r" duplicates the frames when necessary to achieve 30 fps.
    So, shouldn’t it be stretching the 10th frame for 10 seconds, till it gets a new frame.

    Are the fps parameters in the command used correctly ?