Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (39)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3953)

  • avcodec/htmlsubtitles : Fixes denial of service due to use of sscanf in inner loop...

    6 février 2019, par Kevin Backhouse via RT
    avcodec/htmlsubtitles : Fixes denial of service due to use of sscanf in inner loop for handling braces
    

    Fixes : [Semmle Security Reports #19439]
    Fixes : dos_sscanf2.mkv

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/htmlsubtitles.c
  • Ensure that there are scripts before using its collection

    9 novembre 2016, par gabriel-bezerra
    Ensure that there are scripts before using its collection
    

    The current code expects the collection of scripts to be populated. However that is not the case when it runs in a JS interpreter that has nothing in the DOM.

    It may happen when running ScalaJS tests in Rhino.

    Check this thread to see more details : https://groups.google.com/d/msg/mozilla-rhino/Ooir-2R29-w/VRc1CWogXIcJ

  • how to set nVidia video bitrate in a system service ?

    12 septembre 2021, par qycx

    I use an nvidia card for compression and decompression in a video conferencing software. The program uses ffmpeg. The program is a system service. Need to control the bit rate. But I found that I didn't control it. The setting code rate was 700k, and the actual value was 10M. What went wrong ?

    &#xA;

    /* put sample parameters */&#xA;    pUnit->encV_var.c->bit_rate = bitrate;//400000;&#xA;    /* resolution must be a multiple of two */&#xA;    pUnit->encV_var.c->width = in_w;//352;&#xA;    pUnit->encV_var.c->height = in_h;//288;&#xA;    pUnit->encV_var.c->qmin=10;&#xA;    pUnit->encV_var.c->qmax=30;&#xA;    /* frames per second */&#xA;    AVRational t1={1,25};&#xA;    t1.den=fps;&#xA;    pUnit->encV_var.c->time_base = t1;//(AVRational){1, 25};&#xA;    AVRational t2={25,1};&#xA;    t2.num=fps;&#xA;    pUnit->encV_var.c->framerate = t2;//(AVRational){25, 1};&#xA;&#xA;    /* emit one intra frame every ten frames&#xA;     * check frame pict_type before passing frame&#xA;     * to encoder, if frame->pict_type is AV_PICTURE_TYPE_I&#xA;     * then gop_size is ignored and the output of encoder&#xA;     * will always be I frame irrespective to gop_size&#xA;     */&#xA;    pUnit->encV_var.c->gop_size = 256;//10;&#xA;    pUnit->encV_var.c->max_b_frames = 0;//1;&#xA;    pUnit->encV_var.c->pix_fmt = AV_PIX_FMT_YUV420P;&#xA;

    &#xA;