
Recherche avancée
Autres articles (22)
-
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 -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6273)
-
x264 : Using NAL size limitation ruines the stream
25 mars 2014, par Dan TumaykinI’m using x264 to compress a video stream from a webcam with this settings :
x264_param_default_preset(&param, "veryfast", "zerolatency");
param.i_threads = 1;
param.i_fps_den = 1;
param.b_annexb = 1;
param.i_keyint_max = 30;
param.rc.i_rc_method = X264_RC_CRF;
param.rc.f_rf_constant = 25;
param.rc.f_rf_constant_max = 35;
param.b_repeat_headers = 1;
x264_param_apply_profile(&param, "baseline");
param.i_slice_max_size = X264_NAL_MAX_SIZE;I would like to fit NAL into MTU size, but if I set a small max size, the stream is ruined - it blinks randomly between black and white, with some clues of original image in background. The bigger is the max_size, less probable is for the stream to be ruined. So my question is - can we have small NALUs and a correct video stream ?
UPD : I use FFmpeg as a decoder.
-
x264 : Using NAL size limitation ruins the stream
21 janvier 2015, par Dan TumaykinI’m using x264 to compress a video stream from a webcam with this settings :
x264_param_default_preset(&param, "veryfast", "zerolatency");
param.i_threads = 1;
param.i_fps_den = 1;
param.b_annexb = 1;
param.i_keyint_max = 30;
param.rc.i_rc_method = X264_RC_CRF;
param.rc.f_rf_constant = 25;
param.rc.f_rf_constant_max = 35;
param.b_repeat_headers = 1;
x264_param_apply_profile(&param, "baseline");
param.i_slice_max_size = X264_NAL_MAX_SIZE;I would like to fit NAL into MTU size, but if I set a small max size, the stream is ruined - it blinks randomly between black and white, with some clues of original image in background. The bigger is the max_size, less probable is for the stream to be ruined. So my question is - can we have small NALUs and a correct video stream ?
UPD : I use FFmpeg as a decoder.
-
x264 : Using NAL size limitation ruins the stream
21 janvier 2015, par Dan TumaykinI’m using x264 to compress a video stream from a webcam with this settings :
x264_param_default_preset(&param, "veryfast", "zerolatency");
param.i_threads = 1;
param.i_fps_den = 1;
param.b_annexb = 1;
param.i_keyint_max = 30;
param.rc.i_rc_method = X264_RC_CRF;
param.rc.f_rf_constant = 25;
param.rc.f_rf_constant_max = 35;
param.b_repeat_headers = 1;
x264_param_apply_profile(&param, "baseline");
param.i_slice_max_size = X264_NAL_MAX_SIZE;I would like to fit NAL into MTU size, but if I set a small max size, the stream is ruined - it blinks randomly between black and white, with some clues of original image in background. The bigger is the max_size, less probable is for the stream to be ruined. So my question is - can we have small NALUs and a correct video stream ?
UPD : I use FFmpeg as a decoder.