Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (57)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (8594)

  • Revision 15fb5510a8 : Further one-pass vbr rate control changes Some parameter changes and fixes on o

    8 février 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_firstpass.h


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_ratectrl.c



    Further one-pass vbr rate control changes

    Some parameter changes and fixes on one-pass rate control.
    derfraw300 is now only 10% below 2-pass speed 0 rate control.

    Change-Id : I1940eef8a5a035dc18e71b880d5e00cabd1f01b9

  • x264 rate control

    31 août 2012, par Craig

    We are using the x264 encoder in a video conferencing project, we have the basic streaming video working, however, we are having trouble understanding how the various rate control settings determine the final bitrate.
    We set the following params :

    x264_param_t params;
    x264_param_default_preset(&params, "ultrafast", "zerolatency");
    params.i_threads = 1;
    params.i_width = width;
    params.i_height = height;
    params.i_fps_num = fps;
    params.i_keyint_max = fps;
    params.b_intra_refresh = 1;
    params.b_repeat_headers = 1;
    params.b_annexb = 1;

    //Set rate control stuff here

    x264_param_apply_profile(&params, "baseline");

    If we only set the params.rc.i_bitrate param, the encoder seems to massively overshoot the bitrate. If we set the i_vbv_max_bitrate & i_vbv_buffer_size params we see a bitrate which peaks (and sometimes overshoots) the i_vbv_max_bitrate setting. Obviously having tight control over the biterate is important for video conferencing, but the documentation is kind of opaque. Is anybody else using x264 for video conferencing ? How are you setting the encoder ? Any help appreciated, thanks in advance.

  • avformat/rtmpproto : Fix RTMP control message handling error in listen mode.

    12 octobre 2016, par Hiroyuki OYAMA
    avformat/rtmpproto : Fix RTMP control message handling error in listen mode.
    

    Fix problem to fail by a RTMP Control Message except "Set Chunk Size (1)" after an RTMP handshake. When ’nginx-rtmp-module’ relays an RTMP, it sends not only control message ’Set Chunk Size (1)’ but also ’Window Acknowledgement Size (5)’.

    Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtmpproto.c