
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (49)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9861)
-
libx264 bitrate to high for streaming
26 février 2015, par KevinAI’m using libx264 to encode video captured at 1080p 24fps from a video camera. The output of the encoder goes to Live555 for streaming. I cannot get the bitrate below 30 mb/s.
My Current Settings for x264 are :
if (x264_param_default_preset(&m_pParam, "ultrafast", "zerolatency") != 0){
return false;
}
int fps = 24;
m_pParam.i_threads = 1;
m_pParam.i_fps_num = fps;
m_pParam.i_fps_den = 1;
m_pParam.i_width = m_iWidthOut;
m_pParam.i_height = m_iHeightOut;
// One keyframe per X frames:
m_pParam.i_keyint_max = 60;
//Rate control:
m_pParam.rc.i_rc_method = X264_RC_CRF;
m_pParam.rc.f_rf_constant = fps - 5;
m_pParam.rc.f_rf_constant_max = fps + 5;
//m_pParam.i_sps_id = 7;
//For streaming:
m_pParam.b_repeat_headers = 1;
m_pParam.b_annexb = 1;
m_pParam.b_intra_refresh = 1;
if (x264_param_apply_profile(&m_pParam, "main") != 0) {
return false;
}
return true;Changing the preset seems to only slow the encoding rate and consequently the frame rate.
How can I get the bitrate below 30mb/s so I can stream to something like a phone ?
-
libx264 bitrate to high for streaming
26 février 2015, par KevinAI’m using libx264 to encode video captured at 1080p 24fps from a video camera. The output of the encoder goes to Live555 for streaming. I cannot get the bitrate below 30 mb/s.
My Current Settings for x264 are :
if (x264_param_default_preset(&m_pParam, "ultrafast", "zerolatency") != 0){
return false;
}
int fps = 24;
m_pParam.i_threads = 1;
m_pParam.i_fps_num = fps;
m_pParam.i_fps_den = 1;
m_pParam.i_width = m_iWidthOut;
m_pParam.i_height = m_iHeightOut;
// One keyframe per X frames:
m_pParam.i_keyint_max = 60;
//Rate control:
m_pParam.rc.i_rc_method = X264_RC_CRF;
m_pParam.rc.f_rf_constant = fps - 5;
m_pParam.rc.f_rf_constant_max = fps + 5;
//m_pParam.i_sps_id = 7;
//For streaming:
m_pParam.b_repeat_headers = 1;
m_pParam.b_annexb = 1;
m_pParam.b_intra_refresh = 1;
if (x264_param_apply_profile(&m_pParam, "main") != 0) {
return false;
}
return true;Changing the preset seems to only slow the encoding rate and consequently the frame rate.
How can I get the bitrate below 30mb/s so I can stream to something like a phone ?
-
rtpdec_hevc : Skip 1 byte (DOND) instead of 2 (DONL) between aggregation units
22 février 2015, par Martin Storsjö