Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (81)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (12253)

  • Updated version number for last merge.

    29 août 2014, par blueimp
    Updated version number for last merge.
  • slicethread : Limit the automatic number of threads to 16

    5 septembre 2022, par Martin Storsjö
    slicethread : Limit the automatic number of threads to 16
    

    This matches a similar cap on the number of automatic threads
    in libavcodec/pthread_slice.c.

    On systems with lots of cores, this fixes a couple fate failures
    in 32 bit mode on such machines (where spawning a huge number of
    threads runs out of address space).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/slicethread.c
  • the number of frames in ts file

    12 juin 2017, par j.teak

    i got video data from my web camera, and using ffmpeg to make ts, m3u8

    but ts what made by ffmpeg, each ts has different the number of frames.

    so, how can i make the number of frames equally ?

    and each gop size in ts are also different..

    how can i make gop size is constant ?

    avformat_alloc_output_context2(&amp;ptr->hls_ctx, NULL, "hls", "hls.m3u8");
    ((HLSContext*)ptr->hls_ctx->priv_data)->flags = HLS_DELETE_SEGMENTS | HLS_ROUND_DURATIONS;
    ((HLSContext*)ptr->hls_ctx->priv_data)->max_nb_segments = 2;
    ((HLSContext*)ptr->hls_ctx->priv_data)->time = 2;

    i already use time parameter for setting ts’s play time