
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (66)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (5624)
-
How to achieve 2 pass encoding using x264 ?
6 avril 2017, par Kim Kardashianis there a parameter in the x264_param_t structure
or do I have to send frames to x264 dll twice.. ?
Because I just use encoder_encode function and that returns nal units .
Im guessing it should be a combination of a parameter and using encoder_encode twice.Here is how i initialize params and link to libx264
InitializeSettings(){
x264_param_default_preset(&m_pXParam, "medium", "zerolatency");
x264_param_apply_profile(&m_pXParam, "baseline");
m_pXParam.i_width = cx;
m_pXParam.i_height = cy;
m_pXParam.i_fps_num = fps;
m_pXParam.i_fps_den = 1;
// rate control
m_pXParam.i_keyint_max = fps - 5;
//m_pXParam.rc.f_rf_constant_max = fps + 5;
// rate control
m_pXParam.rc.i_qp_constant=18;
m_pXParam.rc.i_qp_min=18;
m_pXParam.rc.i_qp_max=18;}
x264_picture_alloc(&m_xPicture, X264_CSP_I420 , m_pXParam.i_width, m_pXParam.i_height);
m_xPicture.img = x264img;
m_iframe_size = x264_encoder_encode(m_xEncoder, &m_xNals, &m_iNal, &m_xPicture, &m_xPictureOut);@nobody555 Thanks ! I had another question about x264_param_apply_fastfirstpass function :
/* x264_param_apply_fastfirstpass:
* If first-pass mode is set (rc.b_stat_read == 0, rc.b_stat_write == 1),
* modify the encoder settings to disable options generally not useful on
* the first pass. */what options are they talking about ?
-
How to achieve 2 pass encoding using x264 ?
6 avril 2017, par Kim Kardashianis there a parameter in the x264_param_t structure
or do I have to send frames to x264 dll twice.. ?
Because I just use encoder_encode function and that returns nal units .
Im guessing it should be a combination of a parameter and using encoder_encode twice.Here is how i initialize params and link to libx264
InitializeSettings(){
x264_param_default_preset(&m_pXParam, "medium", "zerolatency");
x264_param_apply_profile(&m_pXParam, "baseline");
m_pXParam.i_width = cx;
m_pXParam.i_height = cy;
m_pXParam.i_fps_num = fps;
m_pXParam.i_fps_den = 1;
// rate control
m_pXParam.i_keyint_max = fps - 5;
//m_pXParam.rc.f_rf_constant_max = fps + 5;
// rate control
m_pXParam.rc.i_qp_constant=18;
m_pXParam.rc.i_qp_min=18;
m_pXParam.rc.i_qp_max=18;}
x264_picture_alloc(&m_xPicture, X264_CSP_I420 , m_pXParam.i_width, m_pXParam.i_height);
m_xPicture.img = x264img;
m_iframe_size = x264_encoder_encode(m_xEncoder, &m_xNals, &m_iNal, &m_xPicture, &m_xPictureOut);@nobody555 Thanks ! I had another question about x264_param_apply_fastfirstpass function :
/* x264_param_apply_fastfirstpass:
* If first-pass mode is set (rc.b_stat_read == 0, rc.b_stat_write == 1),
* modify the encoder settings to disable options generally not useful on
* the first pass. */what options are they talking about ?
-
How to achieve 2 pass encoding using x264 ?
6 avril 2017, par Kim Kardashianis there a parameter in the x264_param_t structure
or do I have to send frames to x264 dll twice.. ?
Because I just use encoder_encode function and that returns nal units .
Im guessing it should be a combination of a parameter and using encoder_encode twice.Here is how i initialize params and link to libx264
InitializeSettings(){
x264_param_default_preset(&m_pXParam, "medium", "zerolatency");
x264_param_apply_profile(&m_pXParam, "baseline");
m_pXParam.i_width = cx;
m_pXParam.i_height = cy;
m_pXParam.i_fps_num = fps;
m_pXParam.i_fps_den = 1;
// rate control
m_pXParam.i_keyint_max = fps - 5;
//m_pXParam.rc.f_rf_constant_max = fps + 5;
// rate control
m_pXParam.rc.i_qp_constant=18;
m_pXParam.rc.i_qp_min=18;
m_pXParam.rc.i_qp_max=18;}
x264_picture_alloc(&m_xPicture, X264_CSP_I420 , m_pXParam.i_width, m_pXParam.i_height);
m_xPicture.img = x264img;
m_iframe_size = x264_encoder_encode(m_xEncoder, &m_xNals, &m_iNal, &m_xPicture, &m_xPictureOut);@nobody555 Thanks ! I had another question about x264_param_apply_fastfirstpass function :
/* x264_param_apply_fastfirstpass:
* If first-pass mode is set (rc.b_stat_read == 0, rc.b_stat_write == 1),
* modify the encoder settings to disable options generally not useful on
* the first pass. */what options are they talking about ?