Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (44)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4484)

  • How to set x264 baseline profile with libav in C++

    14 avril 2015, par Denis Loh

    I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code :

     eccx->pix_fmt = PIX_FMT_YUV420P;
     eccx->width = VIDEO_FRAME_WIDTH;
     eccx->height = VIDEO_FRAME_HEIGHT;
     eccx->time_base.num = 1;
     eccx->time_base.den = VIDEO_FRAMES_PER_SEC;
     eccx->max_b_frames = 0;

     eccx->rtp_payload_size = VIDEO_RTP_PAYLOAD_SIZE;

     eccx->bit_rate = VIDEO_BIT_RATE;
     eccx->rc_max_rate = VIDEO_BIT_RATE;
     eccx->rc_buffer_size = VIDEO_BIT_RATE * 2;

     eccx->flags |= CODEC_FLAG_QP_RD;
     eccx->flags |= CODEC_FLAG_LOW_DELAY;
     eccx->flags |= CODEC_FLAG_QSCALE;
     eccx->flags |= CODEC_FLAG_EMU_EDGE;

     eccx->mb_decision = FF_MB_DECISION_SIMPLE;

     switch(video){
     case H263:
       break;
     case H263P:
       eccx->flags |= CODEC_FLAG_H263P_SLICE_STRUCT;
       break;
     case H264:
       av_dict_set(&options, "vprofile", "baseline", 0);
       eccx->flags2 = CODEC_FLAG2_FASTPSKIP;
       eccx->profile = FF_PROFILE_H264_BASELINE;
       eccx->level = 13;
       break;
     }

    When I execute this program I got the following output from libx264 :

    [libx264 @ 0x10fad60] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
    [libx264 @ 0x10fad60] profile Main, level 1.3

    Why is this still Main profile, though I have set it explicitly to baseline ?

    Additionally, I would be really cool, if someone could add some notes which kind of h264 settings are useful for SIP phone calls. Thank you very much !

  • libaacplus : move profile check above, simplifies code a little

    23 mai 2013, par Paul B Mahol
    libaacplus : move profile check above, simplifies code a little
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/libaacplus.c
  • j2kdec : profile code from jpeg2000

    26 mai 2013, par Michael Niedermayer
    j2kdec : profile code from jpeg2000
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/j2kdec.c