Recherche avancée

Médias (91)

Autres articles (38)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5980)

  • 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.

  • Vertical video subtitles burn font size

    20 mai 2020, par fantom

    I have two videos, one of them is has display aspect ratio (DAR) 16:9 (horizontal) and another one has 9:16 (vertical). I need to burn in subtitles into them, and for horizontal video I need to set Fontsize=18. But if I try to use the same settings with vertical video, I get very big text size, so I need to set Fontsize=10 to get the same size of letters as in horizontal video.
The question is, why I get different displayed font sizes for different DAR and is there any way to have one settings for both (I don't know up front which orientation video will have when burning subtitles and want to not depend on it)

    


  • ffmpeg : Cut a video to get an output of a given size

    9 septembre 2020, par Timoteo Espinoza

    I'm currently developing a ffmpeg App and I want to divide a video in parts of a given size, for instance, divide a video of 200Mb in parts of 50Mb each one, any idea how to do it so ?
Thanks in advance.