Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (49)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP 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 (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (9171)

  • x264 : Using NAL size limitation ruines the stream

    25 mars 2014, par dtumaykin

    I’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 ruines the stream

    25 mars 2014, par Dan Tumaykin

    I’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 Tumaykin

    I’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.