
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (46)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (10347)
-
Reduce Bandwidth requirement for Video Streaming
19 février 2014, par user3239282Please suggest some points on, how to reduce the bandwidth requirement for a video stream.
We are actually streaming the desktop across internet, Remote Access Application.
Encoder : libx264.lib
Decoder : Ffmpeg
Codec : H264
Following is how am configuring h264 for encoding :
x264_param_default_preset(&this->m_x264Settings, "veryfast", "zerolatency");
this->m_x264Settings.i_threads = 1;
this->m_x264Settings.i_width = width / 2;
this->m_x264Settings.i_height = height / 2;
this->m_x264Settings.i_keyint_max = 10;//fps;
this->m_x264Settings.b_intra_refresh = 1;
this->m_x264Settings.i_fps_num = 10;
this->m_x264Settings.i_fps_den = 1;
// Intra refres:
this->m_x264Settings.i_keyint_max = 25;
this->m_x264Settings.b_intra_refresh = 1;
//Rate control:
this->m_x264Settings.rc.i_rc_method = X264_RC_CRF;
this->m_x264Settings.rc.f_rf_constant = 25;
this->m_x264Settings.rc.f_rf_constant_max = 35;
//For streaming:
this->m_x264Settings.b_repeat_headers = 1;
this->m_x264Settings.b_annexb = 1;
x264_param_apply_profile(&this->m_x264Settings, "baseline");
this->m_width = width;
this->m_height = height;
this->m_encoder = x264_encoder_open(&this->m_x264Settings);
x264_picture_alloc(&this->m_picIn,X264_CSP_I420,(width / 2),(height / 2));
int sws_flags = SWS_BICUBIC;
m_imgConverCtx = sws_getContext(width, height, PIX_FMT_RGB32, (width/2), (height/2), PIX_FMT_YUV420P,sws_flags, NULL, NULL, NULL);Thanks in advance,
Paul. -
Révision 23004 : Le squelette fautif ci-dessous provoque un erreur fatale (et Full Path Disclosure...
10 mai 2016, par esj@rezo.net
(RUBRIQUES)id_parent>#TITRE -
Reduce Bandwidth requirement for Video Streaming
19 février 2014, par user3239282Please suggest some points on, how to reduce the bandwidth requirement for a video stream.
We are actually streaming the desktop across internet, Remote Access Application.
Encoder : libx264.lib
Decoder : Ffmpeg
Codec : H264
Following is how am configuring h264 for encoding :
x264_param_default_preset(&this->m_x264Settings, "veryfast", "zerolatency");
this->m_x264Settings.i_threads = 1;
this->m_x264Settings.i_width = width / 2;
this->m_x264Settings.i_height = height / 2;
this->m_x264Settings.i_keyint_max = 10;//fps;
this->m_x264Settings.b_intra_refresh = 1;
this->m_x264Settings.i_fps_num = 10;
this->m_x264Settings.i_fps_den = 1;
// Intra refres:
this->m_x264Settings.i_keyint_max = 25;
this->m_x264Settings.b_intra_refresh = 1;
//Rate control:
this->m_x264Settings.rc.i_rc_method = X264_RC_CRF;
this->m_x264Settings.rc.f_rf_constant = 25;
this->m_x264Settings.rc.f_rf_constant_max = 35;
//For streaming:
this->m_x264Settings.b_repeat_headers = 1;
this->m_x264Settings.b_annexb = 1;
x264_param_apply_profile(&this->m_x264Settings, "baseline");
this->m_width = width;
this->m_height = height;
this->m_encoder = x264_encoder_open(&this->m_x264Settings);
x264_picture_alloc(&this->m_picIn,X264_CSP_I420,(width / 2),(height / 2));
int sws_flags = SWS_BICUBIC;
m_imgConverCtx = sws_getContext(width, height, PIX_FMT_RGB32, (width/2), (height/2), PIX_FMT_YUV420P,sws_flags, NULL, NULL, NULL);Thanks in advance,
Paul.