Recherche avancée

Médias (91)

Autres articles (54)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9646)

  • libfaac : Queue input is backward in time

    28 février 2014, par iota

    I am using libav along with libfaac to encode audio into aac.
    following is the logic :

    frames[n]
    i = 0 ;
    while (there are frames)
    {
     cur_frame =  frames[i];
     av_encode_audio(frame, ...., &frame_finished);
     if( frame_finished )
     {
        i++;
     }
    }

    but I am getting this annoying warning for few frames "queue input is backward in time !"

  • Revision 2f4eb5f096 : Remove vp9_create_common() The function has evolved over time, now only calls v

    1er mars 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/common/vp9_alloccommon.c


     Modify /vp9/common/vp9_alloccommon.h


     Modify /vp9/decoder/vp9_onyxd_if.c


     Modify /vp9/encoder/vp9_onyx_if.c



    Remove vp9_create_common()

    The function has evolved over time, now only calls vp9_rtcd(), so this
    commit removes the function and changes to call vp9_rtcd() directly.

    Change-Id : I8cfa6190daa4b28f6f3d1e11bb3a07f9c95322bf

  • Syncronize RTSP with computer time

    17 décembre 2012, par Dídac Pérez

    I am successfully using libav to receive the video stream from an RTSP network source. The point is that I need to syncronize my computer's time with the video capturing, meaning that I need to know which datetime of my computer corresponds to the first frame (pts = 0). My API calls are the following ones :

    av_register_all()
    avcodec_register_all()
    avformat_network_init()
    avformat_open_input()
    avformat_find_stream_info()
    av_read_play()
    loop
     av_init_packet()
     av_read_frame()
     [...]
     av_free_packet
    end loop

    With the calls above, I successfully read frames, but I do need to know how can I know the exact absolute datetime that corresponds to the first frame, since it has a pts of 0. Maybe I can use a time() function or GetSystemTime (I am using Windows) between two calls of the above, but do not really know how libav works. I will appreciate your help,

    Kind regards,

    Dídac Pérez